parent
e335c35548
commit
8412376285
@ -0,0 +1,20 @@ |
|||||||
|
# -*- coding: utf-8 -*- |
||||||
|
"""Python 2/3 compatibility module.""" |
||||||
|
|
||||||
|
|
||||||
|
import sys |
||||||
|
|
||||||
|
PY2 = int(sys.version[0]) == 2 |
||||||
|
|
||||||
|
if PY2: |
||||||
|
text_type = unicode |
||||||
|
binary_type = str |
||||||
|
string_types = (str, unicode) |
||||||
|
unicode = unicode |
||||||
|
basestring = basestring |
||||||
|
else: |
||||||
|
text_type = str |
||||||
|
binary_type = bytes |
||||||
|
string_types = (str,) |
||||||
|
unicode = str |
||||||
|
basestring = (str, bytes) |
Loading…
Reference in new issue