commit | bb0beb7385d00a0f5c99895e7299a5a1307ec193 | [log] [tgz] |
---|---|---|
author | Behdad Esfahbod <behdad@behdad.org> | Wed Nov 27 14:37:28 2013 -0500 |
committer | Behdad Esfahbod <behdad@behdad.org> | Wed Nov 27 15:25:00 2013 -0500 |
tree | 22047af9c5727a03c2956b38e61a87b65c08b98c | |
parent | 4a818a2b98d64781b10b5296eccaaf8dacb3275c [diff] [blame] |
2to3 Use py23 to close some of the bytes/str/unicode gaps
diff --git a/Lib/fontTools/cffLib.py b/Lib/fontTools/cffLib.py index 1577606..7a74041 100644 --- a/Lib/fontTools/cffLib.py +++ b/Lib/fontTools/cffLib.py
@@ -8,11 +8,7 @@ from fontTools.misc import sstruct from fontTools.misc import psCharStrings from fontTools.misc.textTools import safeEval - -try: - basestring -except NameError: - basestring = str +from fontTools.misc.py23 import * DEBUG = 0