14
0

- update to 3.1.2:

* Added `ieee_float` expression to `pyparsing.common`, which
    parses float values, plus "NaN", "Inf", "Infinity".
  * Updated pep8 synonym wrappers for better type checking
    compatibility.
  * Fixed empty error message bug, PR submitted by InSync (#534).
    This _should_ return
    pyparsing's exception messages to a former, more helpful
    form. If you have code that
    parses the exception messages returned by pyparsing, this
    may require some code changes.
  * Some code refactoring to reduce code nesting, PRs submitted
    by InSync.
  * All internal string expressions using '%' string
    interpolation and `str.format()` converted to f-strings.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyparsing?expand=0&rev=102
This commit is contained in:
2024-03-16 10:02:40 +00:00
committed by Git OBS Bridge
parent 0a362603c0
commit 6f62d9a8ca
4 changed files with 23 additions and 4 deletions

View File

@@ -1,3 +1,22 @@
-------------------------------------------------------------------
Sat Mar 16 10:01:30 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 3.1.2:
* Added `ieee_float` expression to `pyparsing.common`, which
parses float values, plus "NaN", "Inf", "Infinity".
* Updated pep8 synonym wrappers for better type checking
compatibility.
* Fixed empty error message bug, PR submitted by InSync (#534).
This _should_ return
pyparsing's exception messages to a former, more helpful
form. If you have code that
parses the exception messages returned by pyparsing, this
may require some code changes.
* Some code refactoring to reduce code nesting, PRs submitted
by InSync.
* All internal string expressions using '%' string
interpolation and `str.format()` converted to f-strings.
-------------------------------------------------------------------
Fri Feb 23 12:23:06 UTC 2024 - Dominique Leuenberger <dimstar@opensuse.org>