Skip to content

Commit 37393af

Browse files
committed
Merge branch 'kevin-brown-issue_4' into py2n3
Conflicts: gitdb/base.py gitdb/fun.py gitdb/pack.py gitdb/stream.py gitdb/test/lib.py gitdb/util.py
2 parents 85dde34 + a8f2f63 commit 37393af

33 files changed

+1479
-1360
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ python:
33
- "2.6"
44
- "2.7"
55
- "3.3"
6+
- "3.4"
67
# - "pypy" - won't work as smmap doesn't work (see smmap/.travis.yml for details)
78

89
script: nosetests

gitdb/__init__.py

+5-6
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ def _init_externals():
1212
"""Initialize external projects by putting them into the path"""
1313
for module in ('async', 'smmap'):
1414
sys.path.append(os.path.join(os.path.dirname(__file__), 'ext', module))
15-
15+
1616
try:
1717
__import__(module)
1818
except ImportError:
1919
raise ImportError("'%s' could not be imported, assure it is located in your PYTHONPATH" % module)
2020
#END verify import
2121
#END handel imports
22-
22+
2323
#} END initialization
2424

2525
_init_externals()
@@ -32,7 +32,6 @@ def _init_externals():
3232

3333

3434
# default imports
35-
from db import *
36-
from base import *
37-
from stream import *
38-
35+
from gitdb.base import *
36+
from gitdb.db import *
37+
from gitdb.stream import *

0 commit comments

Comments
 (0)