summaryrefslogtreecommitdiff
path: root/git/compat.py
blob: 52fc599ca91467771178f6a6b21c17c1caa1588f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#-*-coding:utf-8-*-
# config.py
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
#
# This module is part of GitPython and is released under
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
"""utilities to help provide compatibility with python 3"""

from gitdb.utils.compat import (  # noqa
    PY3,
    xrange,
    MAXSIZE,
    izip,
)

from gitdb.utils.encoding import (   # noqa
    string_types,
    text_type
)