Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/gitdb/__init__.py: 90%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

10 statements  

1# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors 

2# 

3# This module is part of GitDB and is released under 

4# the New BSD License: https://opensource.org/license/bsd-3-clause/ 

5"""Initialize the object database module""" 

6 

7__author__ = "Sebastian Thiel" 

8__contact__ = "byronimo@gmail.com" 

9__homepage__ = "https://github.com/gitpython-developers/gitdb" 

10version_info = (4, 0, 12) 

11__version__ = '.'.join(str(i) for i in version_info) 

12 

13# default imports 

14from gitdb.base import * 

15from gitdb.db import * 

16from gitdb.stream import *