summaryrefslogtreecommitdiff
path: root/pyparsing
Commit message (Expand)AuthorAgeFilesLines
...
* 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
* Convert most str.format() calls to use f-stringsptmcg2022-05-308-194/+103
* More added type annotations; reworked Word.__init__ so that excludeChars excl...ptmcg2022-05-294-54/+66
* Fix/ignore mypy attr-defined errors, where attr definitions are intentionalptmcg2022-05-294-19/+22
* Fix type annotations of Forward dunder-methods (#402)Stephen Rosen2022-05-291-3/+3
* Cleaned up/expanded some docstrings and docs to reflect new 3.0.10 changesptmcg2022-05-201-0/+5
* Add embed argument to create_diagram, to suppress DOCTYPE, HEAD, and BODY tagsptmcg2022-05-202-5/+14
* Make expr[:ender] equivalent to expr[...:ender]ptmcg2022-05-181-2/+4
* Add support for slice in expr[] notation, to pass stop_on repetition sentinelptmcg2022-05-182-1/+21
* Fixed bug in srange (escaped chars inside range set); fixed ignore type annot...ptmcg2022-05-142-6/+6
* Prep for 3.0.9 releaseptmcg2022-05-051-1/+1
* Embedded jinja2 template code in railroad code to remove use of deprecated pk...ptmcg2022-04-302-29/+30
* Expanded BMP name to BasicMultilingualPlane (but retained BMP as a valid syno...ptmcg2022-04-302-2/+4
* Added BMP unicode_set for the Unicode Basic Multilingual Plane (issue #392)ptmcg2022-04-281-5/+23
* Fixed typo in template.jinja2 (for railroad diagrams) - fixes #388)ptmcg2022-04-222-2/+2
* Update docstrings, replacing ZeroOrMore and OneOrMore with [...] and [1, ...]...ptmcg2022-04-114-27/+27
* Reworked mypy typing, removed definitions of OptionalType, DictType, and Iter...ptmcg2022-04-115-72/+83
* Don't import Optional from typing, import the whole module. (#386)Dominic Davis-Foster2022-04-111-2/+2
* Added show_groups arg to create_diagram; prep for releasepyparsing_3.0.8ptmcg2022-04-093-3/+19
* No longer use undocumented module "sre_constants" (#379)Serhiy Storchaka2022-03-292-5/+4
* Fix issue #361ptmcg2022-03-292-3/+7
* Add tests and updated docs for changes to lpar and rpar args to infix_notatio...ptmcg2022-03-271-1/+1
* Add tests and updated docs for changes to lpar and rpar args to infix_notatio...ptmcg2022-03-243-8/+19
* Fix bug #375 (#376)Philippe PRADOS2022-03-241-2/+4
* Add guard inside _trim_arity to protect against black reformatting in spacing...ptmcg2022-03-212-10/+7
* Add missing type hints (#371)Kazantcev Andrey2022-03-201-17/+17
* Black and pre-commit fixesptmcg2022-02-151-8/+11
* Clean up dump() examples in docstringsptmcg2022-02-153-29/+29
* Updated version number for development; blackening; some timestamp cleanupptmcg2022-02-153-5/+10
* Mark `pyparsing` as a typed package (#364)Bas van Beek2022-02-141-0/+0
* Update CHANGES and timestamp from #362; fix related unit test and ValueError ...Paul McGuire2022-02-052-4/+3
* Update CHANGES and timestamp from #362Paul McGuire2022-02-051-1/+1
* 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-182-4/+4
* Fix #355 - needed re.escape, not escape_regex_range_chars in QuotedStringPaul McGuire2022-01-142-2/+2
* Issue #350 - fixed whitespace skipping around White expressionsptmcg2022-01-022-9/+16
* Some code cleanup, replacing map() calls with list comprehensions; better typ...ptmcg2022-01-024-34/+47