Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Trim trailing white space throughout the project | Jon Dufresne | 2018-12-22 | 1 | -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() | cclauss | 2018-10-30 | 1 | -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 pyupgrade | Hugo | 2018-08-21 | 1 | -2/+2 |
| | |||||
* | Move src to root | Cengiz Kaygusuz | 2017-11-20 | 1 | -0/+34 |