# -*- coding: utf-8 -*- """ compat.moves ~~~~~~~~~~~~ This module maps modules from Python2 and 3. """ from .flags import is_py2, is_py3 if is_py2: pass