Skip to main content

Tools for stack-usage in Python expressions

Project description

PYTHON STACKFULL

This small utility package provides functions to be used inside Python expressions that provide functionality like that available in stack-based languages (such as forth and postscript).

It registers a hidden variable in the current running frame, which is a plain Python list - calls to plain “push, pop, dup, retr”, etc… will just push/recover elements from that list.

The intent is that whenever in an expression a value is complicated to retrieve - (or computationally extensive) - instead of having to retrieve it in a previous line and storing said value in a variable, one gets the ability to “push” the value in this implicit stack - and retrieve it in another part of the same expression:

`result = pop().upper() if not push(get_my+expensive_value()).isdigit() else pop()`

For convenience, most functions return the valued passed to them in the first place (like the push above).

Compatibility

As of version 0.20, and introduction of the window function, stackfull is no longer Python 2.x compatible.

Available functions:

clear

Clears the stack

cleartomark

Clears the stack up to the special sentinel value MARK - this allows for clean-up of the stack after a block of code, preserving the older values. If the stack is not empty, returns the last value on the stack non destructively, else, MARK itself is returned.

discard_if_false

Removes the last value in the stack if the expression is false. Made to be used in comprehensions, in the if part:

Ex.: [pop().name for image in values if pop_if_false(push(image) is not None)]

dup

Dplicates the last value on the stack It also returns the value duplicated in a non-destructive way

pop

Pops the last value from the stack

popclear

Pops the last value from the stack, and clears the stack. This allows stackfull to be used inside generator expressions and comprehensions, using a ‘push’ in the filtering expression, and ‘popclear’ on the result expression.

push

Pushes a value into the stack, and returns the value itself Along with ‘pop’ and ‘popclear’ this is the heart of stackfull - as it allows an expensive function to be used in a ‘if’ or ‘while’ test, and still have its value available to use inside the defined block - without the need of an explicit auxiliar variable

push_if_true

Returns the value itself, and Pushes a value into the stack, if it is truthy. Otherwise does not touch the stack. Nice to use inside comprehensions in the “if” part: if the expession is not True, it is never pushed, and extraneous values don’t pile up on the stack.

Ex.: [pop().name for image in values if push_if_true(image)]

retr

Peeks the last value on the stack without consuming it

roll

Rolls the last ‘items’ values on the stack by ‘amount’ positions, changing their order. Returns the value on the top of the stack after the changes in a non destructive way.

stack

Retrieves the stack as an ordinary Python list (which it actually is), allowing one to perform extra desired operations, such as ‘len’ or ‘insert’

window

Pre-populates a frame stack with the seed values, and then iterates over the iterable -

This allows one to use the stack with initial values in a simple way in a generator-expression context - like

fib = [push(stack()[-2] + stack()[-1]) for i in window(range(2, 10), 1,1)]

João S. O. Bueno <gwidion@gmail.com>

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

stackfull-0.20.tar.gz (4.2 kB view details)

Uploaded Source

File details

Details for the file stackfull-0.20.tar.gz.

File metadata

  • Download URL: stackfull-0.20.tar.gz
  • Upload date:
  • Size: 4.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for stackfull-0.20.tar.gz
Algorithm Hash digest
SHA256 a97dcd711feecdde97991b01f67f67399f91eb340b996ded2ac831a539a8c411
MD5 b942c09ea9e2f4405d1700ac4017b954
BLAKE2b-256 e513a3a383d4a2aabc78cfcf5d4e115446882b89393e8e17d85f08772201ab87

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page