File: __init__.py

package info (click to toggle)
python-git 0.3.2~RC1-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,092 kB
  • sloc: python: 8,570; makefile: 16
file content (21 lines) | stat: -rw-r--r-- 418 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

# import all modules in order, fix the names they require
from symbolic import *
from reference import *
from head import *
from tag import *
from remote import *

# name fixes
import head
head.RemoteReference = RemoteReference
del(head)


import symbolic
for item in (HEAD, Head, RemoteReference, TagReference, Reference, SymbolicReference):
	setattr(symbolic, item.__name__, item)
del(symbolic)


from log import *