Changelog for
python38-parso-0.8.3-qubes.2.18.noarch.rpm :
* Fri Dec 10 2021 Ben Greiner
- update to 0.8.3:
* Add basic support for Python 3.11 and 3.12- Skip tests failing in Python 3.10 gh#davidhalter/parso#192
* Sun Jun 06 2021 Dirk Müller - update to 0.8.2: - Various small bugfixes
* Fri Dec 25 2020 Matej Cepl - update to 0.8.1 (according to gh#davidhalter/jedi#1650 it should be compatible with python-jedi now): - Dropped Support for Python 2.7, 3.4, 3.5 - It\'s possible to use ``pathlib.Path`` objects now in the API - The stubs are gone, we are now using annotations - ``namedexpr_test`` nodes are now a proper class called ``NamedExpr`` - A lot of smaller refactorings
* Sat Dec 19 2020 Dirk Müller - update to 0.7.1: - Fixed a couple of smaller bugs (mostly syntax error detection in ``Grammar.iter_errors``)
* Thu Sep 03 2020 Matej Cepl - Revert back to the 0.7.0 version.
* Tue Apr 14 2020 Benjamin Greiner - update to 0.7.0
* Fix a lot of annoying bugs in the diff parser. The fuzzer did not find issues anymore even after running it for more than 24 hours (500k tests).
* Small grammar change: suites can now contain newlines even after a newline. This should really not matter if you don\'t use error recovery. It allows for nicer error recovery.- remove py_38.patch (merged upstream)
* Thu Mar 05 2020 Ondřej Súkup - update to 0.6.2
* Add Grammar.refactor (might still be subject to change until 0.7.0)
* add py_38.patch - fix tests with py-3.8.2
* Tue Feb 04 2020 Ondřej Súkup - update to 0.6.1
* Add parso.normalizer.Issue.end_pos to make it possible to know where an issue ends
* Dropped Python 2.6/Python 3.3 support
* del_stmt names are now considered as a definition (for name.is_definition())
* Fri Dec 27 2019 Ondřej Súkup - update to 0.5.2
* Add include_setitem to get_definition/is_definition and get_defined_names
* Fix named expression error listing
* Fix some f-string tokenizer issues
* Tue Jul 16 2019 Ondřej Súkup - update to 0.5.1
* Fix: Some unicode identifiers were not correctly tokenized
* Fix: Line continuations in f-strings are now working
* Tue Jul 02 2019 Marketa Calabkova - update to 0.5.0
* comp_for is now called sync_comp_for for all Python versions to be compatible with the Python 3.8 Grammar
* Added .pyi stubs for a lot of the parso API
* Small FileIO changes
* Thu Apr 18 2019 Ondřej Súkup - update to 0.4.0
* Python 3.8 support
* FileIO support, it\'s now possible to use abstract file IO, support is alpha
* Thu Feb 14 2019 Tomáš Chvátal - Update to 0.3.4:
* Fix an f-string tokenizer error
* Fix async errors in the diff parser
* A fix in iter_errors
* 20+ bugfixes in the diff parser and 3 in the tokenizer
* A fuzzer for the diff parser, to give confidence that the diff parser is in a good shape.
* Some bugfixes for f-string
* Thu Feb 14 2019 Tomáš Chvátal - Drop bogus dependency on pytest-cache