summaryrefslogtreecommitdiff
path: root/pyparsing/actions.py
Commit message (Collapse)AuthorAgeFilesLines
* Additional docstring and sphinx cleanupptmcg2022-06-181-6/+18
|
* Convert most str.format() calls to use f-stringsptmcg2022-05-301-5/+3
|
* Fix/ignore mypy attr-defined errors, where attr definitions are intentionalptmcg2022-05-291-1/+1
|
* Update docstrings, replacing ZeroOrMore and OneOrMore with [...] and [1, ↵ptmcg2022-04-111-1/+1
| | | | ...] notation
* Clean up bullet lists in docstringsptmcg2021-10-021-4/+4
|
* Add PEP-8 naming, with compatibility synonymsptmcg2021-08-071-38/+46
|
* Update __versionTime__; blacken core code and examplesptmcg2021-08-011-7/+15
|
* Move OnlyOnce out of core.py and into actions.pyptmcg2020-12-241-0/+23
|
* Replace last-century '%' string interp with .format() usagePaul McGuire2020-07-191-1/+1
|
* Convert internal imports to relative imports, to support projects that ↵ptmcg2020-05-131-2/+2
| | | | vendor pyparsing
* Break up pyparsing.py monolith into sub-modules in a pyparsing package (#162)Paul McGuire2019-11-181-0/+168
* 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