summaryrefslogtreecommitdiff
path: root/pyparsing/common.py
Commit message (Collapse)AuthorAgeFilesLines
* Doc updates, remove references to deprecated delimitedList and ↵ptmcg2023-04-191-2/+2
| | | | delimited_list (use DelimitedList class)
* Add 'url' named capture group to common.url Regexptmcg2023-03-271-1/+3
|
* Remove ^ and $ tags from pp.common.url regex - fixes #459ptmcg2023-01-181-3/+2
|
* Clean up docstrings to use new PEP8 names instead of old camelCase namesptmcg2022-06-161-7/+7
|
* Fix up docstrings for deprecated functions (doc as deprecated, instead of ↵ptmcg2022-06-161-14/+21
| | | | duplicating actual function doc) - issue #411
* Fix named fields returned by common.url expression; add more common.* items ↵ptmcg2021-10-221-3/+3
| | | | to HowToUsePyparsing.rst
* Clean up bullet lists in docstringsptmcg2021-10-021-18/+19
|
* Add pyparsing_common.url to urlExtractorNew.pyptmcg2021-09-111-0/+2
|
* Add url expression to pyparsing_common (#249)ptmcg2021-09-081-0/+48
|
* Add missing setName() calls; use new identchars and identbodychars to define ↵ptmcg2021-09-081-2/+2
| | | | identifier
* Adding type annotationsptmcg2021-08-231-7/+8
|
* Sweep code for usage of Optional -> Opt; sweep HowToUsePyparsing.rst for ↵ptmcg2021-08-081-5/+5
| | | | legacy names
* Sweep code for calls using legacy namesptmcg2021-08-081-4/+4
|
* Add PEP-8 naming, with compatibility synonymsptmcg2021-08-071-40/+53
|
* Convert internal imports to relative imports, to support projects that ↵ptmcg2020-05-131-2/+2
| | | | vendor pyparsing
* Fixed bug in regex definitions for real and sci_real expressions in ↵ptmcg2020-03-231-2/+2
| | | | pyparsing_common. Issue #194.
* Break up pyparsing.py monolith into sub-modules in a pyparsing package (#162)Paul McGuire2019-11-181-0/+359
* 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