summaryrefslogtreecommitdiff
path: root/pyparsing
Commit message (Expand)AuthorAgeFilesLines
* Don't always override exception messages in MatchFirst or Or classes - addres...ptmcg2023-03-072-3/+8
* Add ParseResults.deepcopy() - fixes #463ptmcg2023-03-063-5/+31
* Change version to 3.1.0, not 3.0.10, and make it alpha so we can go through s...ptmcg2023-03-051-2/+2
* Remove future import annotations - fixes #465ptmcg2023-02-121-3/+2
* Remove ^ and $ tags from pp.common.url regex - fixes #459ptmcg2023-01-181-3/+2
* Add pyparsing.unicode.identifier class propertyptmcg2023-01-132-22/+32
* Fix some type annotations; fixes Issue #456ptmcg2022-12-223-16/+22
* Added DelimitedList class, for better handling of naming and diagramming (rep...ptmcg2022-12-113-84/+98
* Better handling of ParserElementEnhance subclassesptmcg2022-12-111-1/+3
* Additional measures to prevent premature streamlining (Issue #447)ptmcg2022-11-102-5/+6
* Deprecate ParserElement.validate() (Issue #444)ptmcg2022-11-061-0/+20
* Fix stacklevel when warning invalid config setting; added assertWarns wrapper...ptmcg2022-11-061-1/+2
* Added new class method `ParserElement.using_each`ptmcg2022-11-062-1/+13
* Add Unicode MIDDLE DOT to Latin1.identbodycharsptmcg2022-11-061-2/+2
* Add doc and error message clarifications about Word with as_keyword=True. Fix...ptmcg2022-07-181-2/+4
* Add type annotationsptmcg2022-07-147-50/+107
* More post-cleanup from removing weakref on ParseResults._parentptmcg2022-07-112-19/+13
* Change weakref _parent reference in ParseResults to regular reference, to avo...ptmcg2022-07-112-12/+11
* Add recurse option to set_debug(), fixes #399ptmcg2022-07-113-8/+30
* Merge branch 'ptm_address_booleansearchparser_issue'ptmcg2022-07-091-1/+1
|\
| * Add micro optimizationsptmcg2022-07-093-14/+20
| * Fix delimited_list bug (Issue #408)ptmcg2022-07-092-2/+30
* | Some micro-optimizationsptmcg2022-07-094-20/+38
* | Fix bug in delimited_list (premature streamline), issue #408ptmcg2022-07-092-2/+30
|/
* Simpler fix for __new__ with copy.copy() (#427)Devin J. Pohly2022-07-091-8/+4
* Small docstring formatting/syntax fixes (#426)Devin J. Pohly2022-07-091-4/+4
* Add return of NotImplemented to other binary operators (similar to PR #425), ...ptmcg2022-07-042-1/+21
* Return NotImplemented for unsupported operations (#425)Devin J. Pohly2022-07-041-36/+12
* Added python_quoted_string; fixed exception messages for ParseElementEnhance ...ptmcg2022-06-293-5/+30
* Update latest version timestampptmcg2022-06-241-1/+1
* Remove assignment to __class__ in Word, remove internal _WordRegex classptmcg2022-06-242-12/+5
* Simplify code that incrementally builds a ParseResultsptmcg2022-06-232-5/+6
* Additional docstring and sphinx cleanupptmcg2022-06-183-9/+21
* Replace OrderedDict in FIFOCache with dict+key ringbufferptmcg2022-06-181-3/+8
* More docstring fixesptmcg2022-06-171-4/+7
* There will be blackptmcg2022-06-172-3/+1
* Explicitly declare compatibility alias functions (#414)Devin J. Pohly2022-06-174-90/+203
* Docstring cleanups in col and lineno functionsptmcg2022-06-171-2/+2
* Fix docstring synonyms for parseString, scanString, et al.; refactor replaces...ptmcg2022-06-172-18/+44
* Add mypy ignore directives for intentional Python rule-bendingptmcg2022-06-162-11/+14
* Cleanup docstrings using replaces_prePEP8_function decorator; and blackptmcg2022-06-162-31/+36
* Use Literal.__new__ to select optimized subclasses (#413)Devin J. Pohly2022-06-161-19/+37
* Clean up docstrings to use new PEP8 names instead of old camelCase namesptmcg2022-06-161-1/+1
* Clean up docstrings to use new PEP8 names instead of old camelCase namesptmcg2022-06-163-18/+18
* More docstring fixup, in exceptions.py - issue #411ptmcg2022-06-161-3/+2
* Fix up docstrings for deprecated functions (doc as deprecated, instead of dup...ptmcg2022-06-166-56/+97
* fix Sphinx errors/warnings (#410)Devin J. Pohly2022-06-103-8/+12
* Fix Word(max=2) (issue #409); create re for Word(exact=n) exprs; validate tha...ptmcg2022-06-102-23/+33
* Clean up unicode set naming to remove # type: ignore directivesptmcg2022-06-081-23/+22
* Fix list formatting in docstrings (#407)Devin J. Pohly2022-06-071-26/+37