14
0

- update to 1.9.0:

* Revamp for a more modern Python style in the 3.12 era:
    + start adding type annotations to code.
    + use pyproject.toml
    + remove illegal escape sequences
  * `BuildTree` now builds trees iteratively rather than
    recursively. With this we can handle larger trees which are
    needed in the decompilers.
  * Revise `README.rst` for the above and go over spelling and
    grammar
  * Internally, more git branches have been created to support
    older Python.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-spark_parser?expand=0&rev=16
This commit is contained in:
2024-11-11 21:08:52 +00:00
committed by Git OBS Bridge
parent 489dfa1247
commit 956b38fa22
4 changed files with 27 additions and 8 deletions

View File

@@ -1,3 +1,19 @@
-------------------------------------------------------------------
Mon Nov 11 21:08:13 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 1.9.0:
* Revamp for a more modern Python style in the 3.12 era:
+ start adding type annotations to code.
+ use pyproject.toml
+ remove illegal escape sequences
* `BuildTree` now builds trees iteratively rather than
recursively. With this we can handle larger trees which are
needed in the decompilers.
* Revise `README.rst` for the above and go over spelling and
grammar
* Internally, more git branches have been created to support
older Python.
-------------------------------------------------------------------
Sun Aug 16 22:50:53 UTC 2020 - John Vandenberg <jayvdb@gmail.com>