mirror of
https://github.com/kennethreitz-archive/python-compat.git
synced 2026-06-05 15:30:18 +00:00
15 lines
162 B
Python
15 lines
162 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
compat.moves
|
|
~~~~~~~~~~~~
|
|
|
|
This module maps modules from Python2 and 3.
|
|
"""
|
|
|
|
|
|
from .flags import is_py2, is_py3
|
|
|
|
|
|
if is_py2:
|
|
pass |