| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Return NotImplemented for unsupported operations (#425) | Devin J. Pohly | 2022-07-04 | 1 | -36/+12 |
* | Add new classifiers to pyproject.toml | ptmcg | 2022-06-30 | 1 | -0/+3 |
* | Added python_quoted_string; fixed exception messages for ParseElementEnhance ... | ptmcg | 2022-06-29 | 7 | -114/+193 |
* | Update test_diagram.py testing with and without embed | ptmcg | 2022-06-24 | 1 | -6/+6 |
* | Update latest version timestamp | ptmcg | 2022-06-24 | 1 | -1/+1 |
* | Minor changes in verilogParse.py - remove unused timing vars, change time.tim... | ptmcg | 2022-06-24 | 1 | -4/+3 |
* | Update diagram tests to reflect changes in jinja2 | ptmcg | 2022-06-24 | 3 | -2/+4 |
* | Remove assignment to __class__ in Word, remove internal _WordRegex class | ptmcg | 2022-06-24 | 3 | -14/+15 |
* | Simplify code that incrementally builds a ParseResults | ptmcg | 2022-06-23 | 2 | -5/+6 |
* | Update tox.ini to run packaging tests using Python 3.7 | ptmcg | 2022-06-18 | 1 | -0/+1 |
* | Additional docstring and sphinx cleanup | ptmcg | 2022-06-18 | 4 | -10/+22 |
* | Replace OrderedDict in FIFOCache with dict+key ringbuffer | ptmcg | 2022-06-18 | 1 | -3/+8 |
* | More docstring fixes | ptmcg | 2022-06-17 | 1 | -4/+7 |
* | Enable packrat in verilogParse.py by default | ptmcg | 2022-06-17 | 1 | -2/+2 |
* | Add note to CHANGES about upcoming DeprecationWarnings to be emitted in next ... | ptmcg | 2022-06-17 | 1 | -0/+8 |
* | There will be black | ptmcg | 2022-06-17 | 2 | -3/+1 |
* | Explicitly declare compatibility alias functions (#414) | Devin J. Pohly | 2022-06-17 | 4 | -90/+203 |
* | Docstring cleanups in col and lineno functions | ptmcg | 2022-06-17 | 1 | -2/+2 |
* | Fix docstring synonyms for parseString, scanString, et al.; refactor replaces... | ptmcg | 2022-06-17 | 2 | -18/+44 |
* | Add mypy ignore directives for intentional Python rule-bending | ptmcg | 2022-06-16 | 2 | -11/+14 |
* | Cleanup docstrings using replaces_prePEP8_function decorator; and black | ptmcg | 2022-06-16 | 2 | -31/+36 |
* | Add CHANGES blurb for Optional/Literal/Empty changes (Issue #412) (PR #413) | ptmcg | 2022-06-16 | 1 | -0/+16 |
* | Use Literal.__new__ to select optimized subclasses (#413) | Devin J. Pohly | 2022-06-16 | 2 | -24/+47 |
* | Clean up docstrings to use new PEP8 names instead of old camelCase names | ptmcg | 2022-06-16 | 1 | -1/+1 |
* | Clean up docstrings to use new PEP8 names instead of old camelCase names | ptmcg | 2022-06-16 | 3 | -18/+18 |
* | More docstring fixup, in exceptions.py - issue #411 | ptmcg | 2022-06-16 | 1 | -3/+2 |
* | Fix up docstrings for deprecated functions (doc as deprecated, instead of dup... | ptmcg | 2022-06-16 | 7 | -58/+99 |
* | Acknowledge DJPohly docstring cleanup efforts in CHANGES file | ptmcg | 2022-06-10 | 1 | -0/+4 |
* | fix Sphinx errors/warnings (#410) | Devin J. Pohly | 2022-06-10 | 4 | -9/+15 |
* | Fix Word(max=2) (issue #409); create re for Word(exact=n) exprs; validate tha... | ptmcg | 2022-06-10 | 4 | -23/+92 |
* | Clean up unicode set naming to remove # type: ignore directives | ptmcg | 2022-06-08 | 1 | -23/+22 |
* | Fix list formatting in docstrings (#407) | Devin J. Pohly | 2022-06-07 | 1 | -26/+37 |
* | Updates to HowToUsePyparsing.rst | ptmcg | 2022-05-31 | 1 | -4/+8 |
* | Updates to HowToUsePyparsing.rst, and added pyparsingClassDiagram_3.0.9.jpg | ptmcg | 2022-05-31 | 2 | -8/+41 |
* | Convert most str.format() calls in tests to use f-strings | ptmcg | 2022-05-30 | 2 | -251/+105 |
* | Convert most str.format() calls to use f-strings | ptmcg | 2022-05-30 | 8 | -194/+103 |
* | Enable mypy-test in CI (#406) | Stephen Rosen | 2022-05-30 | 2 | -9/+8 |
* | More added type annotations; reworked Word.__init__ so that excludeChars excl... | ptmcg | 2022-05-29 | 6 | -55/+92 |
* | Tighten up unit test calls to parseString, to pass parseAll=True except when ... | ptmcg | 2022-05-29 | 1 | -273/+330 |
* | Fix/ignore mypy attr-defined errors, where attr definitions are intentional | ptmcg | 2022-05-29 | 4 | -19/+22 |
* | Update CI to avoid `tox -e ALL` (#405) | Stephen Rosen | 2022-05-29 | 1 | -15/+6 |
* | Fix type annotations of Forward dunder-methods (#402) | Stephen Rosen | 2022-05-29 | 4 | -4/+36 |
* | Cleaned up/expanded some docstrings and docs to reflect new 3.0.10 changes | ptmcg | 2022-05-20 | 3 | -3/+24 |
* | Add embed argument to create_diagram, to suppress DOCTYPE, HEAD, and BODY tags | ptmcg | 2022-05-20 | 6 | -5/+195 |
* | Make expr[:ender] equivalent to expr[...:ender] | ptmcg | 2022-05-18 | 3 | -13/+54 |
* | Add support for slice in expr[] notation, to pass stop_on repetition sentinel | ptmcg | 2022-05-18 | 4 | -12/+48 |
* | Fixed some reStructured text errors in whats_new_in_3_0_0.rst | ptmcg | 2022-05-14 | 1 | -3/+3 |
* | Updated version headers in CHANGES to include release dates | ptmcg | 2022-05-14 | 1 | -24/+24 |
* | Fixed bug in srange (escaped chars inside range set); fixed ignore type annot... | ptmcg | 2022-05-14 | 6 | -13/+40 |
* | Back out Lox language parser (from Crafting Interpreters, by Robert Nystrom)pyparsing_3.0.9 | ptmcg | 2022-05-10 | 1 | -220/+0 |