summaryrefslogtreecommitdiff
path: root/src/pyparsing.py
Commit message (Expand)AuthorAgeFilesLines
* Move src to rootCengiz Kaygusuz2017-11-201-5720/+0
* Add minor enht for infixNotation, to accept a sequence of parse actions at ea...Paul McGuire2017-03-061-5/+10
* Prep for 2.2.0 releasePaul McGuire2017-03-031-1/+1
* Fix error and expand docstring examples for ParserElement.searchStringPaul McGuire2017-03-031-1/+5
* Fix deprecated use of '\' as described in https://bugs.python.org/issue27364 ...Paul McGuire2017-02-281-4/+4
* Minor change when using '-' operator, to be compatible with ParserElement.str...Paul McGuire2017-02-281-1/+1
* Fix KeyError when packrat cache gets updated recursivelyPaul McGuire2017-02-281-5/+20
* Fix docstring formatting for epydoc compatibilityPaul McGuire2016-10-071-2/+2
* Fix @(*#&$#& typoPaul McGuire2016-10-061-4/+2
* Add example to LineStart docstringPaul McGuire2016-10-061-0/+19
* Fixed bug in col, which allowed simplification of LineStart down to minimal i...Paul McGuire2016-10-061-9/+3
* Fixed behavior of LineStart; added AutoReset to other unit tests that modify ...Paul McGuire2016-10-041-10/+8
* Fix all bare 'except:' statements in pyparsing; add more 'n-or-more' unit testsPaul McGuire2016-10-021-10/+10
* Fix bug in ZeroOrMore results name reportingPaul McGuire2016-09-281-6/+3
* Fixed bug in ParseResults.dump when keys were not strings. Also changed displ...Paul McGuire2016-09-241-3/+7
* Added support for multiline test strings in runTestsPaul McGuire2016-09-111-1/+9
* Fix typo in doc string; add comment on support for ()'s in infixNotationPaul McGuire2016-09-111-4/+5
* Cleanup/notes in prep for 2.1.9 releasePaul McGuire2016-09-101-2/+2
* Fix Py3 bug in ParseResults.getName; fixed bug in Keyword and CaselessKeyword...Paul McGuire2016-09-081-5/+7
* Copied upcaseTokens and downcaseTokens to pyparsing_common; renamed pyparsing...Paul McGuire2016-08-261-11/+27
* Added CloseMatch classPaul McGuire2016-08-171-3/+64
* Some docstring changesPaul McGuire2016-08-151-11/+34
* Some docstring changesPaul McGuire2016-08-141-9/+11
* enhanced runTests to better handle non-parsing exceptionsPaul McGuire2016-08-141-3/+17
* Simplified merging ParseResults from expressions in an Each; also fixed class...Paul McGuire2016-08-131-40/+31
* Add limit=n args to extract_stack and extract_tb calls, to minimize scanning ...Paul McGuire2016-08-121-7/+7
* Clearer example output in ParseResultsPaul McGuire2016-08-111-15/+18
* Added inline doc example for ParserElement.setDebugPaul McGuire2016-08-111-2/+31
* Fixed bug in ParserElement.inlineLiteralsUsing, causing infinite loop with Su...Paul McGuire2016-08-111-3/+6
* Undo removal of generator handlingPaul McGuire2016-08-111-1/+5
* Remove dangling ref to _generatorTypePaul McGuire2016-08-111-1/+1
* Add support for all iterables (sets, generators, etc.) to oneOf and ParseExpr...Paul McGuire2016-08-111-11/+6
* Fix regression when using packrat parsing and raising ParseSyntaxException in...Paul McGuire2016-08-091-11/+17
* Typo in Keyword docstringPaul McGuire2016-08-071-1/+1
* docstring tweak (ParseResults.asDict)Paul McGuire2016-08-071-1/+1
* More docstring cleanup/enhancementPaul McGuire2016-08-071-27/+45
* Fix typo in SkipTo docstringPaul McGuire2016-08-071-1/+1
* Reformat Word docstring to include links to helper stringsPaul McGuire2016-08-071-9/+10
* Add the last of the new inline doc examplesPaul McGuire2016-08-061-57/+469
* Add more inline doc examplesPaul McGuire2016-08-061-36/+286
* Fixed version datePaul McGuire2016-08-061-1/+1
* Add inline examples to docstrings, for realPaul McGuire2016-08-051-481/+1094
* Fixed bug in upcaseTokens and downcaseTokens introduced in 2.1.5, when the pa...Paul McGuire2016-08-051-2/+2
* Add inline examples to docstrings, so that reference docs will show sample co...Paul McGuire2016-08-051-8/+8
* Deprecated ParseResults.asXML Paul McGuire2016-08-051-2/+2
* Updated traceParseAction to use repr of input/output tokens instead of strPaul McGuire2016-08-051-3/+3
* Rename pyparsing_common's "numeric" and "number" expressions to "number" and ...Paul McGuire2016-08-051-5/+5
* LRU rework to use OrderedDict instead, better cross-version Python compatibil...Paul McGuire2016-08-041-41/+86
* Modified init for Py2 compatibility (need args attribute for exception constr...Paul McGuire2016-07-271-0/+1
* Final code cleanup for adding lru_cache. Removed DictCache wrapper on dict, j...Paul McGuire2016-07-271-43/+29