18F/crime-data-api

View on GitHub
crime_data/compat.py

Summary

Maintainability
A
0 mins
Test Coverage
# -*- coding: utf-8 -*-
"""Python 2/3 compatibility module."""
import sys
 
PY2 = int(sys.version[0]) == 2
 
if PY2:
text_type = unicode # noqa
binary_type = str
string_types = (str, unicode) # noqa
unicode = unicode # noqa
basestring = basestring # noqa
else:
text_type = str
binary_type = bytes
string_types = (str, )
unicode = str
basestring = (str, bytes)