diff options
author | 2014-10-03 21:28:28 +0200 | |
---|---|---|
committer | 2014-10-03 21:28:28 +0200 | |
commit | 7fc24c10cd3dad19a69392398671a78abecd71d1 (patch) | |
tree | b7a2f70ac2410ffebe22f70d5dc07398a2f162e0 /pyload/lib/markupsafe/_compat.py | |
parent | Remove trailing whitespaces (diff) | |
download | pyload-7fc24c10cd3dad19a69392398671a78abecd71d1.tar.xz |
Remove lib
Diffstat (limited to 'pyload/lib/markupsafe/_compat.py')
-rw-r--r-- | pyload/lib/markupsafe/_compat.py | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/pyload/lib/markupsafe/_compat.py b/pyload/lib/markupsafe/_compat.py deleted file mode 100644 index 62e5632ad..000000000 --- a/pyload/lib/markupsafe/_compat.py +++ /dev/null @@ -1,26 +0,0 @@ -# -*- coding: utf-8 -*- -""" - markupsafe._compat - ~~~~~~~~~~~~~~~~~~ - - Compatibility module for different Python versions. - - :copyright: (c) 2013 by Armin Ronacher. - :license: BSD, see LICENSE for more details. -""" -import sys - -PY2 = sys.version_info[0] == 2 - -if not PY2: - text_type = str - string_types = (str,) - unichr = chr - int_types = (int,) - iteritems = lambda x: iter(x.items()) -else: - text_type = unicode - string_types = (str, unicode) - unichr = unichr - int_types = (int, long) - iteritems = lambda x: x.iteritems() |