14
0

- update to 3.2.1:

* Updated generated railroad diagrams to make non-terminal
    elements links to their related sub-diagrams. This _greatly_
    improves navigation of the diagram, especially for
    large, complex parsers.
  * Simplified railroad diagrams emitted for parsers using
    `infix_notation`, by hiding lookahead terms. Renamed
    internally generated expressions for clarity, and improved
    diagramming.
  * Improved performance of `cpp_style_comment`,
    `c_style_comment`, `common.fnumber`
    and `common.ieee_float` Regex expressions.
  * Add missing type annotations to `match_only_at_col`,
    `replace_with`, `remove_quotes`, `with_attribute`, and
    `with_class`. Issue #585 reported by rafrafrek.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyparsing?expand=0&rev=109
This commit is contained in:
2025-02-04 18:56:45 +00:00
committed by Git OBS Bridge
parent f1e1133bba
commit 3612c06a0b
4 changed files with 24 additions and 5 deletions

View File

@@ -1,3 +1,22 @@
-------------------------------------------------------------------
Tue Feb 4 18:56:03 UTC 2025 - Dirk Müller <dmueller@suse.com>
- update to 3.2.1:
* Updated generated railroad diagrams to make non-terminal
elements links to their related sub-diagrams. This _greatly_
improves navigation of the diagram, especially for
large, complex parsers.
* Simplified railroad diagrams emitted for parsers using
`infix_notation`, by hiding lookahead terms. Renamed
internally generated expressions for clarity, and improved
diagramming.
* Improved performance of `cpp_style_comment`,
`c_style_comment`, `common.fnumber`
and `common.ieee_float` Regex expressions.
* Add missing type annotations to `match_only_at_col`,
`replace_with`, `remove_quotes`, `with_attribute`, and
`with_class`. Issue #585 reported by rafrafrek.
-------------------------------------------------------------------
Mon Oct 28 17:00:03 UTC 2024 - Dirk Müller <dmueller@suse.com>