summaryrefslogtreecommitdiff
path: root/src/unitTests.py
Commit message (Expand)AuthorAgeFilesLines
* Move src to rootCengiz Kaygusuz2017-11-201-3675/+0
* Add minor enht for infixNotation, to accept a sequence of parse actions at ea...Paul McGuire2017-03-061-1/+70
* Fix deprecated use of '\' as described in https://bugs.python.org/issue27364 ...Paul McGuire2017-02-281-3/+3
* Fixed bug in col, which allowed simplification of LineStart down to minimal i...Paul McGuire2016-10-061-2/+38
* Fixed behavior of LineStart; added AutoReset to other unit tests that modify ...Paul McGuire2016-10-041-23/+82
* Fix all bare 'except:' statements in pyparsing; add more 'n-or-more' unit testsPaul McGuire2016-10-021-1/+6
* Fix bug in ZeroOrMore results name reportingPaul McGuire2016-09-281-0/+15
* Remove all uses of 'eval'Paul McGuire2016-09-151-4/+9
* Minor changes to unitTests.pyPaul McGuire2016-09-151-4/+1
* Add tests of sci_realPaul McGuire2016-09-111-0/+8
* Cleanup/notes in prep for 2.1.9 releasePaul McGuire2016-09-101-0/+8
* Simpler API to AutoReset context manager for testingPaul McGuire2016-09-091-25/+29
* Minor rework to unitTest - suppresses test output unless there is an exceptionPaul McGuire2016-09-091-23/+41
* Fix Py3 bug in ParseResults.getName; fixed bug in Keyword and CaselessKeyword...Paul McGuire2016-09-081-1/+64
* Copied upcaseTokens and downcaseTokens to pyparsing_common; renamed pyparsing...Paul McGuire2016-08-261-0/+10
* Added CloseMatch classPaul McGuire2016-08-171-0/+28
* Simplified merging ParseResults from expressions in an Each; also fixed class...Paul McGuire2016-08-131-0/+44
* Add limit=n args to extract_stack and extract_tb calls, to minimize scanning ...Paul McGuire2016-08-121-0/+52
* Fixed bug in ParserElement.inlineLiteralsUsing, causing infinite loop with Su...Paul McGuire2016-08-111-0/+49
* oneOf test cleanupPaul McGuire2016-08-111-5/+5
* Add support for all iterables (sets, generators, etc.) to oneOf and ParseExpr...Paul McGuire2016-08-111-0/+18
* Fix regression when using packrat parsing and raising ParseSyntaxException in...Paul McGuire2016-08-091-0/+18
* Fixed bug in upcaseTokens and downcaseTokens introduced in 2.1.5, when the pa...Paul McGuire2016-08-051-0/+5
* Rename pyparsing_common's "numeric" and "number" expressions to "number" and ...Paul McGuire2016-08-051-3/+3
* Typo in Jython-specific unit testPaul McGuire2016-07-271-1/+1
* Typo in Jython-specific unit testPaul McGuire2016-07-271-1/+1
* Tweak unicode ranges for Jython 2.7.0 compatibilityPaul McGuire2016-07-271-2/+6
* Remove pprint import; convert to use ParseResults.pprint methodsPaul McGuire2016-07-271-3/+2
* Put test case classes back in order, as they are defined in the source module...Paul McGuire2016-07-261-0/+4
* Fixed bug in pyparsing_common.numeric, integers were parsed as floatsPaul McGuire2016-06-181-0/+12
* Added ParserElement.split() generator methodPaul McGuire2016-06-131-0/+96
* Fix test file path (change '\' to '/')Paul McGuire2016-06-121-1/+1
* Change result value returned by runTests to be a list of (test,result) tuplesPaul McGuire2016-06-121-68/+134
* Add support in pyparsing_common for fractions and mixed integer-fraction valuesPaul McGuire2016-06-081-8/+29
* Added tokenMap parse action helper; general code cleanup; renamed literalStri...Paul McGuire2016-05-241-1/+12
* runTests changes: made parseAll=True the default; added support for failure t...Paul McGuire2016-05-181-15/+30
* Add UUID to pyparsing_commonPaul McGuire2016-05-181-0/+1
* Added more expressions to pyparsing_common: IPv4 and IPv6 addresses (includin...Paul McGuire2016-05-181-0/+83
* Added 'fatal' option to addCondition; enhancements to runTests, and added uni...Paul McGuire2016-05-131-1/+57
* Minor enhancement to traceParseAction decorator, to retain the parse action's...Paul McGuire2016-05-131-63/+27
* Better handling of Win vs. Linux line endings in ParseConfigFileTest, and cas...Paul McGuire2016-05-111-2/+2
* Fixed catastrophic regex backtracking in implementation of the quoted string ...Paul McGuire2016-04-291-1/+16
* Fixed bug in ParseResults.toDict(), in which dict values were always converte...Paul McGuire2016-03-061-0/+35
* Fixed bug in Each introduced in 2.1.0Paul McGuire2016-02-231-0/+21
* Fixed bug in SkipTo when using failOn; replaced explicit references to obj.__...Paul McGuire2016-02-221-6/+10
* Added support for assigning to ParseResults using slices; reimplemented origi...Paul McGuire2016-02-151-1/+9
* Cleaned up pickle tests; added CountedArrayTest3 to test for non-decimal-inte...Paul McGuire2016-02-071-35/+106
* Removed deprecated class Upcase and deprecated class keepOriginalText; update...Paul McGuire2016-02-071-20/+20
* Add support for pickling ParseResults with protocols 2 and higher (default pr...Paul McGuire2016-02-061-4/+36
* Fix _trim_arity to distinguish between TypeErrors raised in parse actions and...Paul McGuire2016-01-181-1/+15