2.0.0
What's Changed
picobox.push()
can now be used as a regular function as well, not only as a context manager. This is a breaking change because from now one a box is pushed on stack immediately when callingpicobox.push()
, no need to wait for__enter__()
to be called. See #16.- New
picobox.pop()
function, that pops the box from the top of the stack. See #16 and #17. - Fixed a potential race condition on concurrent calls to
picobox.push()
that may occur in non-CPython implementations. See #16.
New Contributors
Full Changelog: 1.1.0...2.0.0