summaryrefslogtreecommitdiff
path: root/scripts/fix_b.py
Commit message (Collapse)AuthorAgeFilesLines
* Dropped use of b() "macro" and 2to3 fixerDaniele Varrazzo2016-08-151-20/+0
| | | | Just use the b"" strings syntax supported from python 2.6.
* Replace b('str') with b'str' in Python 3Daniele Varrazzo2011-01-131-0/+20
This avoids an encode() call for each of these constants. Use a custom 2to3 fixer in setup.py to perform the conversion.