summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
* Add UUID to pyparsing_commonptmcg2016-05-183-2/+6
* Added more expressions to pyparsing_common: IPv4 and IPv6 addresses (includin...ptmcg2016-05-183-4/+116
* Py2/Py3 compatibilityptmcg2016-05-181-3/+8
* Update pyparsing code practicesptmcg2016-05-174-101/+30
* Some docstring cleanup for better epydoc outputptmcg2016-05-141-10/+11
* Added 'fatal' option to addCondition; enhancements to runTests, and added uni...ptmcg2016-05-133-20/+103
* Fix Py3 incompatibility in traceParseActionptmcg2016-05-131-2/+2
* Minor enhancement to traceParseAction decorator, to retain the parse action's...ptmcg2016-05-133-65/+42
* Add epydoc docstrings to new expressions in pyparsing_commonptmcg2016-05-131-3/+11
* Split out the '==' behavior in ParserElement, now implemented as the matches(...ptmcg2016-05-122-39/+150
* Notes on _trim_arity fixptmcg2016-05-111-1/+8
* Update version timestampptmcg2016-05-111-1/+1
* traceback module variations between Py3.5.0 and Py3.5.1ptmcg2016-05-111-2/+5
* Fix trim_arity handling of Python 2 vs 3 traceback data; changed in 3.5, not ...ptmcg2016-05-111-6/+7
* Better handling of Win vs. Linux line endings in ParseConfigFileTest, and cas...ptmcg2016-05-111-2/+2
* Fixed similar backtracking issues in the C and C++ style commentsptmcg2016-04-292-5/+7
* Fixed catastrophic regex backtracking in implementation of the quoted string ...ptmcg2016-04-293-5/+26
* Fix bug in _trim_arity when pyparsing is part of a PyInstaller (which leaves ...ptmcg2016-04-222-6/+33
* Fix timestamp for releaseptmcg2016-03-211-1/+1
* Cleanup docstring changes to QuotedString for epydoc processingptmcg2016-03-211-3/+2
* Added default behavior to QuotedString to convert embedded '\t', '\n', etc. c...ptmcg2016-03-193-2/+36
* Fixed bug in ParseResults.toDict(), in which dict values were always converte...ptmcg2016-03-063-2/+51
* Fixed bug in Each introduced in 2.1.0ptmcg2016-02-233-4/+30
* Fixed bug in SkipTo when using failOn; replaced explicit references to obj.__...ptmcg2016-02-223-10/+16
* Removed use of partial in replaceWith, for PyPy compatibility. Removed no-lon...ptmcg2016-02-162-21/+6
* Added support for assigning to ParseResults using slices; reimplemented origi...ptmcg2016-02-153-8/+18
* Cleaned up pickle tests; added CountedArrayTest3 to test for non-decimal-inte...ptmcg2016-02-071-35/+106
* Added stopOn arg to ZeroOrMore and OneOrMore; refactored/cleaned up SkipTo to...ptmcg2016-02-072-97/+152
* Fixed to match current Python installed versionptmcg2016-02-071-1/+1
* Removed deprecated class Upcase and deprecated class keepOriginalText; update...ptmcg2016-02-0713-78/+60
* Switched version number to 2.1.0ptmcg2016-02-072-14/+14
* Add support for pickling ParseResults with protocols 2 and higher (default pr...ptmcg2016-02-063-5/+49
* Add CHANGES blurb for example fixesptmcg2016-01-271-0/+3
* Cleanup examples, fix typo in fourFn.py, convert sample tests to use runTestsptmcg2016-01-274-51/+40
* Fixed ParseResults.asDict() to correctly convert nested ParseResults values t...ptmcg2016-01-232-4/+12
* Updates to include default minutes and seconds in time of day if not given; h...ptmcg2016-01-221-52/+62
* Fix _trim_arity to distinguish between TypeErrors raised in parse actions and...ptmcg2016-01-183-7/+42
* More internal expression naming, in internal elements of infixNotationptmcg2016-01-012-4/+15
* Added expression names for many internal and builtin expressions, to reduce n...ptmcg2015-12-313-31/+89
* Added new example parseTabularData.pyptmcg2015-12-3116-169/+191
* Remove list comprehensions in favor of gen exprsptmcg2015-12-301-3/+3
* Update wordsToNum.py exampleptmcg2015-12-251-19/+8
* Fixed bug in ignore() (introduced in pyparsing 1.5.3) that would not accept a...ptmcg2015-12-172-2/+8
* Fixed up implementations of __dir__ to reduce maintenance overhead, and fix o...ptmcg2015-12-132-4/+6
* Remove duplicated codeptmcg2015-12-071-1/+0
* Cleaned up additional issues from enhancing the error messages for Or and Mat...ptmcg2015-11-253-14/+26
* Simplified string representation of Forward, to avoid memory and performance ...ptmcg2015-11-252-2/+10
* Forgot to add new unit test to main test suiteptmcg2015-11-101-0/+1
* Fix bug in Each when containing an Optional that has a results name or parse ...ptmcg2015-11-103-3/+15
* Fixed a bug in Or, when a parse action on an alternative raises an exceptionptmcg2015-11-043-13/+56