summaryrefslogtreecommitdiff
path: root/pyparsing/core.py
Commit message (Expand)AuthorAgeFilesLines
...
* No longer use undocumented module "sre_constants" (#379)Serhiy Storchaka2022-03-291-4/+3
* Add tests and updated docs for changes to lpar and rpar args to infix_notatio...ptmcg2022-03-241-2/+3
* Add guard inside _trim_arity to protect against black reformatting in spacing...ptmcg2022-03-211-9/+6
* Add missing type hints (#371)Kazantcev Andrey2022-03-201-17/+17
* Clean up dump() examples in docstringsptmcg2022-02-151-16/+16
* Updated version number for development; blackening; some timestamp cleanupptmcg2022-02-151-1/+4
* Update CHANGES and timestamp from #362; fix related unit test and ValueError ...Paul McGuire2022-02-051-3/+2
* optimize pyparsing import time by deferring regex compile (#363)Anthony Sottile2022-02-051-14/+36
* Fixed IndentedBlock internal parse action to use correct value of curpyparsing_3.0.7ptmcg2022-01-201-1/+1
* Fixed exception generated in a ParserElementEnhance if the contained expr is ...ptmcg2022-01-181-3/+3
* Fix #355 - needed re.escape, not escape_regex_range_chars in QuotedStringPaul McGuire2022-01-141-1/+1
* Issue #350 - fixed whitespace skipping around White expressionsptmcg2022-01-021-8/+15
* Some code cleanup, replacing map() calls with list comprehensions; better typ...ptmcg2022-01-021-30/+41
* Fixed bug in ParserElement.run_tests where comments would be displayed using ...ptmcg2021-12-261-1/+1
* Fixed PEP-8 compatibility logic in WordStart and WordEnd (Issue #346)ptmcg2021-12-181-2/+2
* Added further type annotationsptmcg2021-12-061-44/+43
* Fix typo in warning messageptmcg2021-12-061-2/+2
* Add warning suppression detection for all diagnostic warningspyparsing_3.0.6ptmcg2021-11-121-7/+52
* Revert results names for packaging compatibility (#110)ptmcg2021-11-121-7/+24
* Add debug arg to scan_string, transform_string, search_stringptmcg2021-11-101-4/+18
* Add tracebacks to run_tests() output if ParserElement.verbose_stacktrace == Trueptmcg2021-11-091-1/+5
* Semi-fix collision of Dict and typing.Dict; Some mypy types cleanuppyparsing_3.0.5ptmcg2021-11-071-7/+8
* Added with_line_numbers to run_test(), and made line/col numbering off by def...ptmcg2021-11-051-2/+4
* Added type hints for col, line, and lineno public methods; plus blackptmcg2021-11-021-2/+10
* Removed spurious warnings when assigning results name to originalTextFor expr...ptmcg2021-10-311-2/+2
* PEP-8 some internal namesptmcg2021-10-311-43/+44
* Fix bug where streamline() did not return self if already streamlinedptmcg2021-10-301-6/+6
* Fixed bug in railroad diagramming where the vertical limit would count all ex...ptmcg2021-10-301-9/+9
* Fix Dict() bugfix to wrap tokenlist.as_dict() if self.resultsNameptmcg2021-10-291-1/+1
* Wrap tokenlist in list if `self.resultsName` is present (#324)Bu Sun Kim2021-10-281-1/+4
* Update version to prep for next release (and black)ptmcg2021-10-281-2/+6
* Fix whitespace skipping bug introduced while reverting LineStart() changes - ...ptmcg2021-10-271-4/+5
* Fixed type annotation in IndentedBlockptmcg2021-10-271-1/+1
* Fixed IndentedBlockptmcg2021-10-271-0/+80
* Revert strict LineStart interpretation in 3.0.0 to 2.4.x behavior (Issue #317)ptmcg2021-10-261-23/+18
* To blackenptmcg2021-10-261-2/+1
* Fixed bug in Word with max argument (#314)ptmcg2021-10-241-1/+5
* blackeningptmcg2021-10-241-5/+12
* Added global method `autoname_elements()`ptmcg2021-10-231-1/+16
* Added support for python -W warning option to call enable_all_warnings() at s...ptmcg2021-10-221-0/+22
* Update some internal type annotationsptmcg2021-10-221-2/+2
* Update some internal type annotationsptmcg2021-10-221-4/+8
* Fix set_parse_action type definitions, and docstringptmcg2021-10-221-14/+48
* Guard against empty ParseExpressionsptmcg2021-10-221-6/+17
* Clean up bullet lists in docstringsptmcg2021-10-021-159/+161
* Fix docstring of set_debug_actions to fix markupptmcg2021-10-011-1/+1
* Fix docstring of set_debug_actions to reflect added cache_hit bool argument, ...ptmcg2021-10-011-3/+5
* Fixup type annotationsptmcg2021-09-291-23/+24
* Code cleanupptmcg2021-09-281-0/+82
* Allow multiplying an expr by 0 or (0,0)ptmcg2021-09-241-5/+7