14
0

- update to 2.4.6

* Fixed typos in White mapping of whitespace characters, to use
correct "\u" prefix instead of "u".
 *fix bug in left-associative ternary operators defined using
infixNotation. First reported on StackOverflow by user Jeronimo.
 * Backport of pyparsing_test namespace from 3.0.0, including
TestParseResultsAsserts mixin class defining unittest-helper
methods:
. def assertParseResultsEquals(
self, result, expected_list=None, expected_dict=None, msg=None)
. def assertParseAndCheckList(
self, expr, test_string, expected_list, msg=None, verbose=True)
. def assertParseAndCheckDict(
self, expr, test_string, expected_dict, msg=None, verbose=True)
. def assertRunTestResults(
self, run_tests_report, expected_parse_results=None, msg=None)
. def assertRaisesParseException(self, exc_type=ParseException, msg=None)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyparsing?expand=0&rev=70
This commit is contained in:
2020-02-11 15:50:39 +00:00
committed by Git OBS Bridge
parent 9aa4248e3a
commit cf0acc0212
4 changed files with 28 additions and 5 deletions

View File

@@ -1,3 +1,26 @@
-------------------------------------------------------------------
Tue Feb 11 15:48:22 UTC 2020 - Ondřej Súkup <mimi.vx@gmail.com>
- update to 2.4.6
* Fixed typos in White mapping of whitespace characters, to use
correct "\u" prefix instead of "u".
*fix bug in left-associative ternary operators defined using
infixNotation. First reported on StackOverflow by user Jeronimo.
* Backport of pyparsing_test namespace from 3.0.0, including
TestParseResultsAsserts mixin class defining unittest-helper
methods:
. def assertParseResultsEquals(
self, result, expected_list=None, expected_dict=None, msg=None)
. def assertParseAndCheckList(
self, expr, test_string, expected_list, msg=None, verbose=True)
. def assertParseAndCheckDict(
self, expr, test_string, expected_dict, msg=None, verbose=True)
. def assertRunTestResults(
self, run_tests_report, expected_parse_results=None, msg=None)
. def assertRaisesParseException(self, exc_type=ParseException, msg=None)
-------------------------------------------------------------------
Sat Nov 16 16:46:50 UTC 2019 - Arun Persaud <arun@gmx.de>