Paroxython

Latest version: v0.7.0

Safety actively analyzes 629765 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 2 of 4

0.5.1

- Actually delete labels scheduled for deletion even if they are derived. For instance, previously, the following double scheduling was only honored for adding `pure_function`, not for deleting `impure_function`:

python
def gray(n): paroxython: -impure_function:gray... +pure_function:gray...
if n <= 0:
return [""]
else:
previous = gray(n - 1)
return prefix_all(previous, "0") + prefix_all(reversed(previous), "1") paroxython: ...impure_function:gray ...pure_function:gray


- Fix `paroxython collect` default --skip argument.

0.5.0

- Allow alternative results when testing `spec.md` examples (depending under which Python version Paroxython runs).
- Extend `no_operation` to Ellipsis syntax.
- Add `assignment_expression` feature.
- Correct the span of decorated functions and classes.
- Make `flatten_ast.py` to work with both `typed-ast` and `ast` library.
- Add a helper to compare the results of their respective parser.
- Upgrade the development environment to Python 3.8.

0.4.8

0.4.7

0.4.6

0.4.5

Page 2 of 4

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.