Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Dropped use of b() "macro" and 2to3 fixer | Daniele Varrazzo | 2016-08-15 | 1 | -20/+0 |
| | | | | Just use the b"" strings syntax supported from python 2.6. | ||||
* | Replace b('str') with b'str' in Python 3 | Daniele Varrazzo | 2011-01-13 | 1 | -0/+20 |
This avoids an encode() call for each of these constants. Use a custom 2to3 fixer in setup.py to perform the conversion. |