summaryrefslogtreecommitdiff
path: root/examples/lucene_grammar.py
Commit message (Collapse)AuthorAgeFilesLines
* Update some examples to latest pyparsing style, PEP8 namesptmcg2023-04-011-9/+9
|
* Update lucene_grammar.py example, fix * and ? wildcards, and corrected some ↵ptmcg2023-03-251-30/+52
| | | | tests. Addresses #455
* Used keyword var in lucene_grammar.py (#454)Elijah Nicol2022-12-131-1/+2
| | | * Added usage of keyword variable
* Fix misc. documentation typos (#280)luzpaz2021-05-141-1/+1
| | | Found via `codespell -q 3 -L ba,fourty,halp,inout,strng`
* Add make_diagram.py to examples to demonstrate creating railroad diags for ↵ptmcg2020-06-271-2/+6
| | | | selected examples
* Blacken the project (#141)Jon Dufresne2019-10-311-17/+25
|
* Update/cleanup code in examplesPaul McGuire2019-07-131-325/+332
|
* Update examples and unit tests to more preferred coding styles, imports for ↵ptmcg2019-01-301-29/+28
| | | | pyparsing_common as ppc and pyparsing_unicode as ppu
* Update Lucene grammar example, but remove from Travis-CI acceptance scriptsPaul McGuire2018-12-301-1/+5
|
* Update Travis-CI scripts to include examples; fix bug in runTests if ↵Paul McGuire2018-12-301-0/+3
| | | | postParse function returns None (or any non-str value)
* Remove unused imports throughout projectJon Dufresne2018-12-241-1/+1
| | | | | | | | | | | | | Unused imports were discovered using flake8. By removing the unused imports, the code is a bit friendlier to new contributors as it is clearer what is being used and not simply leftover from previous refactoring. The flake8 command: $ flake8 . --select F401 http://flake8.pycqa.org/
* Trim trailing white space throughout the projectJon Dufresne2018-12-221-4/+4
| | | | | | Many editors clean up trailing white space on save. By removing it all in one go, it helps keep future diffs cleaner by avoiding spurious white space changes on unrelated lines.
* Move src to rootCengiz Kaygusuz2017-11-201-0/+319