File tree Expand file tree Collapse file tree 1 file changed +0
-22
lines changed Expand file tree Collapse file tree 1 file changed +0
-22
lines changed Original file line number Diff line number Diff line change 44# the New BSD License: https://opensource.org/license/bsd-3-clause/
55"""Initialize the object database module"""
66
7- import sys
8- import os
9-
10- #{ Initialization
11-
12-
13- def _init_externals ():
14- """Initialize external projects by putting them into the path"""
15- if 'PYOXIDIZER' not in os .environ :
16- where = os .path .join (os .path .dirname (__file__ ), 'ext' , 'smmap' )
17- if os .path .exists (where ):
18- sys .path .append (where )
19-
20- import smmap
21- del smmap
22- # END handle imports
23-
24- #} END initialization
25-
26- _init_externals ()
27-
287__author__ = "Sebastian Thiel"
298__contact__ = "byronimo@gmail.com"
309__homepage__ = "https://github.com/gitpython-developers/gitdb"
3110version_info = (4 , 0 , 11 )
3211__version__ = '.' .join (str (i ) for i in version_info )
3312
34-
3513# default imports
3614from gitdb .base import *
3715from gitdb .db import *
You can’t perform that action at this time.
0 commit comments