Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Doc updates, remove references to deprecated delimitedList and ↵ | ptmcg | 2023-04-19 | 1 | -1/+6 |
| | | | | delimited_list (use DelimitedList class) | ||||
* | Fix stacklevel when warning invalid config setting; added assertWarns ↵ | ptmcg | 2022-11-06 | 1 | -1/+2 |
| | | | | wrapper similar to assertRaises wrapper, to echo success/fail status | ||||
* | Replace OrderedDict in FIFOCache with dict+key ringbuffer | ptmcg | 2022-06-18 | 1 | -3/+8 |
| | |||||
* | There will be black | ptmcg | 2022-06-17 | 1 | -0/+1 |
| | |||||
* | Explicitly declare compatibility alias functions (#414) | Devin J. Pohly | 2022-06-17 | 1 | -40/+34 |
| | | | | | This allows static type checkers to find and check these functions correctly, and it removes the need to fiddle around with stack frames to get the aliases defined. | ||||
* | Docstring cleanups in col and lineno functions | ptmcg | 2022-06-17 | 1 | -2/+2 |
| | |||||
* | Fix docstring synonyms for parseString, scanString, et al.; refactor ↵ | ptmcg | 2022-06-17 | 1 | -12/+38 |
| | | | | replaces_prePEP8_function decorator to handle new methods correctly | ||||
* | Fix up docstrings for deprecated functions (doc as deprecated, instead of ↵ | ptmcg | 2022-06-16 | 1 | -1/+24 |
| | | | | duplicating actual function doc) - issue #411 | ||||
* | Convert most str.format() calls to use f-strings | ptmcg | 2022-05-30 | 1 | -10/+4 |
| | |||||
* | Fix/ignore mypy attr-defined errors, where attr definitions are intentional | ptmcg | 2022-05-29 | 1 | -3/+3 |
| | |||||
* | Minor enhancement to Word generation of internal regular expression when ↵ | ptmcg | 2021-12-06 | 1 | -2/+3 |
| | | | | characters are 2 consecutive chars | ||||
* | Added type hints for col, line, and lineno public methods; plus black | ptmcg | 2021-11-02 | 1 | -14/+16 |
| | |||||
* | PEP-8 some internal names | ptmcg | 2021-10-31 | 1 | -7/+6 |
| | |||||
* | Fixup type annotations | ptmcg | 2021-09-29 | 1 | -8/+8 |
| | |||||
* | The blackening | ptmcg | 2021-09-08 | 1 | -2/+6 |
| | |||||
* | Only collapse re character ranges if they consist of more than 3 characters | ptmcg | 2021-09-08 | 1 | -1/+3 |
| | |||||
* | Only collapse re character ranges if they consist of 4 or more characters | ptmcg | 2021-09-08 | 1 | -9/+12 |
| | |||||
* | mypy cleanup | ptmcg | 2021-09-02 | 1 | -2/+4 |
| | |||||
* | More informative exception messages | ptmcg | 2021-08-09 | 1 | -1/+1 |
| | |||||
* | Update __versionTime__; blacken core code and examples | ptmcg | 2021-08-01 | 1 | -12/+16 |
| | |||||
* | left recursion memo size may be limited | Max Fischer | 2021-06-28 | 1 | -0/+46 |
| | |||||
* | minor perf changes II | ptmcg | 2020-10-25 | 1 | -3/+5 |
| | |||||
* | Issue #244, fixed debug output to indicate correct parse location; updated ↵ | Paul McGuire | 2020-10-11 | 1 | -1/+4 |
| | | | | setDebug output to include current text line and parse location | ||||
* | Docstring fixes; cleanup dead/Py2 vestigial code | ptmcg | 2020-07-10 | 1 | -13/+2 |
| | |||||
* | Restructure unit tests to do proper testing with and without packrat enabled | ptmcg | 2020-06-26 | 1 | -0/+2 |
| | |||||
* | strRepr cleanup, remove replicated __str__ methods | Paul McGuire | 2020-06-20 | 1 | -1/+4 |
| | |||||
* | Fix potential FutureWarning with generated regex; minor reformat of runTests ↵ | ptmcg | 2020-03-29 | 1 | -4/+4 |
| | | | | output to break at test comments if any | ||||
* | Docstring formatting changes (#197) | Matt Carmody | 2020-03-29 | 1 | -2/+2 |
| | | | | | | | * Tidy docstring formatting for lists and example codeblock * Add class references and formatting to docstrings * Experimental docstring formatting changes | ||||
* | Shorten pyparsing tracebacks, to clear out internal pyparsing calls; plus ↵ | ptmcg | 2020-02-01 | 1 | -3/+5 |
| | | | | some micro-optimizations when using packrat parsing | ||||
* | Added new warning 'warn_on_match_first_with_lshift_operator' to warn when ↵ | ptmcg | 2020-01-26 | 1 | -1/+1 |
| | | | | doing `fwd << a | b`; fixed potential FutureWarning when including unescaped '[' in a regex range definition. | ||||
* | Break up pyparsing.py monolith into sub-modules in a pyparsing package (#162) | Paul McGuire | 2019-11-18 | 1 | -0/+171 |
* Break up pyparsing.py monolith into sub-modules in a pyparsing package * Convert relative imports to absolutes * Reference submodule pyparsing in setup.py modules * Remove recursive import of pyparsing from setup.py * Black updates * setup.py updates - packages vs. modules. use .dev1 for the version |