Files
Kenneth Reitz 67ff6f48cb vendor six fork
2011-12-03 20:25:45 -05:00

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