""" Platform-dependent objects """ import sys PYTHON_VERSION = float(sys.version_info[0]) + float(sys.version_info[1]) / 10 if PYTHON_VERSION < 3: _str_type = basestring # noqa _int_types = (int, long) # noqa else: _str_type = str _int_types = (int,)
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
__pycache__ | Folder | 0755 |
|
|
tests | Folder | 0755 |
|
|
__init__.py | File | 624 B | 0644 |
|
errors.py | File | 18.95 KB | 0644 |
|
platform.py | File | 274 B | 0644 |
|
schema.py | File | 14.39 KB | 0644 |
|
utils.py | File | 2.71 KB | 0644 |
|
validator.py | File | 54.47 KB | 0644 |
|