summaryrefslogtreecommitdiff
path: root/examples/searchParserAppDemo.py
Commit message (Collapse)AuthorAgeFilesLines
* Trim trailing white space throughout the projectJon Dufresne2018-12-221-1/+1
| | | | | | 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.
* Undefined name: Set() --> set()cclauss2018-10-301-2/+2
| | | | | | | | | | | | | | __Set()__ is an _undefined name_ in this context but __set()__ is used elsewhere in this class. [flake8](http://flake8.pycqa.org) testing of https://github.com/pyparsing/pyparsing on Python 3.7.1 $ __flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics__ ``` ./examples/searchParserAppDemo.py:15:18: F821 undefined name 'Set' result = Set() ^ 1 F821 undefined name 'Set' 1 ```
* Upgrade Python syntax with pyupgradeHugo2018-08-211-2/+2
|
* Move src to rootCengiz Kaygusuz2017-11-201-0/+34