2017-08-04 00:52:19 +00:00
|
|
|
# Copyright 2017 Virgil Dupras
|
2013-07-19 22:42:32 +00:00
|
|
|
|
2017-08-04 00:47:58 +00:00
|
|
|
# This software is licensed under the "BSD" License as described in the "LICENSE" file,
|
|
|
|
# which should be included with this package. The terms are also available at
|
2013-07-19 22:42:32 +00:00
|
|
|
# http://www.hardcoded.net/licenses/bsd_license
|
|
|
|
|
|
|
|
import sys
|
2017-08-04 00:47:58 +00:00
|
|
|
import os
|
|
|
|
|
|
|
|
PY3 = sys.version_info[0] >= 3
|
|
|
|
if PY3:
|
2013-07-19 22:42:32 +00:00
|
|
|
text_type = str
|
|
|
|
binary_type = bytes
|
2017-08-04 00:47:58 +00:00
|
|
|
environb = os.environb
|
|
|
|
else:
|
|
|
|
text_type = unicode
|
|
|
|
binary_type = str
|
|
|
|
environb = os.environ
|