Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove explicit position numbers in format strings placeholders | Jon Dufresne | 2018-11-03 | 1 | -1/+1 |
| | | | | All Python versions can handled ordered placeholders. | ||||
* | pycodestyle changes in benchmarking | Roey Prat | 2018-10-28 | 1 | -0/+1 |
| | |||||
* | pep8 cleanup | Chris Simpson | 2016-06-12 | 1 | -0/+2 |
| | |||||
* | Cache Token objects to improve performance. | Chris Simpson | 2016-06-12 | 1 | -0/+197 |
The Token class now contains a cache of tokens, and each token stores its encoded value. In Python 3 this prevents encoding the Token commands (get, set, incr, etc...) repeatly. There is also a smaller performance improvement by creating fewer objects. A very basic benchmark script was also added. |