blob: b2e635d03c0eff6bf08b2e05c925cd4b619b6e77 [file] [log] [blame]
#!/usr/bin/env python
# coding=utf-8
"""Compatibility module.
Import this module to help to write code compatible with Python 2 and 3.
"""
from __future__ import print_function
from __future__ import division
from __future__ import absolute_import
from __future__ import unicode_literals
import six
__all__ = ['six']
# Add here any code that have to differentiate between python 2 and 3.