annotate dulwich/__init__.py @ 87:babc85201dc4

merge of upstream work from dulwich project
author Scott Chacon <schacon@gmail.com>
date Fri, 08 May 2009 16:12:38 -0700
parents c43c02cc803a
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
c43c02cc803a added dulwich library and got the script to call it for clone
Scott Chacon <schacon@gmail.com>
parents:
diff changeset
1 # __init__.py -- The git module of dulwich
c43c02cc803a added dulwich library and got the script to call it for clone
Scott Chacon <schacon@gmail.com>
parents:
diff changeset
2 # Copyright (C) 2007 James Westby <jw+debian@jameswestby.net>
87
babc85201dc4 merge of upstream work from dulwich project
Scott Chacon <schacon@gmail.com>
parents: 2
diff changeset
3 # Copyright (C) 2008 Jelmer Vernooij <jelmer@samba.org>
2
c43c02cc803a added dulwich library and got the script to call it for clone
Scott Chacon <schacon@gmail.com>
parents:
diff changeset
4 #
c43c02cc803a added dulwich library and got the script to call it for clone
Scott Chacon <schacon@gmail.com>
parents:
diff changeset
5 # This program is free software; you can redistribute it and/or
c43c02cc803a added dulwich library and got the script to call it for clone
Scott Chacon <schacon@gmail.com>
parents:
diff changeset
6 # modify it under the terms of the GNU General Public License
c43c02cc803a added dulwich library and got the script to call it for clone
Scott Chacon <schacon@gmail.com>
parents:
diff changeset
7 # as published by the Free Software Foundation; version 2
c43c02cc803a added dulwich library and got the script to call it for clone
Scott Chacon <schacon@gmail.com>
parents:
diff changeset
8 # of the License or (at your option) any later version of
c43c02cc803a added dulwich library and got the script to call it for clone
Scott Chacon <schacon@gmail.com>
parents:
diff changeset
9 # the License.
c43c02cc803a added dulwich library and got the script to call it for clone
Scott Chacon <schacon@gmail.com>
parents:
diff changeset
10 #
c43c02cc803a added dulwich library and got the script to call it for clone
Scott Chacon <schacon@gmail.com>
parents:
diff changeset
11 # This program is distributed in the hope that it will be useful,
c43c02cc803a added dulwich library and got the script to call it for clone
Scott Chacon <schacon@gmail.com>
parents:
diff changeset
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
c43c02cc803a added dulwich library and got the script to call it for clone
Scott Chacon <schacon@gmail.com>
parents:
diff changeset
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
c43c02cc803a added dulwich library and got the script to call it for clone
Scott Chacon <schacon@gmail.com>
parents:
diff changeset
14 # GNU General Public License for more details.
c43c02cc803a added dulwich library and got the script to call it for clone
Scott Chacon <schacon@gmail.com>
parents:
diff changeset
15 #
c43c02cc803a added dulwich library and got the script to call it for clone
Scott Chacon <schacon@gmail.com>
parents:
diff changeset
16 # You should have received a copy of the GNU General Public License
c43c02cc803a added dulwich library and got the script to call it for clone
Scott Chacon <schacon@gmail.com>
parents:
diff changeset
17 # along with this program; if not, write to the Free Software
c43c02cc803a added dulwich library and got the script to call it for clone
Scott Chacon <schacon@gmail.com>
parents:
diff changeset
18 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
c43c02cc803a added dulwich library and got the script to call it for clone
Scott Chacon <schacon@gmail.com>
parents:
diff changeset
19 # MA 02110-1301, USA.
c43c02cc803a added dulwich library and got the script to call it for clone
Scott Chacon <schacon@gmail.com>
parents:
diff changeset
20
87
babc85201dc4 merge of upstream work from dulwich project
Scott Chacon <schacon@gmail.com>
parents: 2
diff changeset
21
babc85201dc4 merge of upstream work from dulwich project
Scott Chacon <schacon@gmail.com>
parents: 2
diff changeset
22 """Python implementation of the Git file formats and protocols."""
babc85201dc4 merge of upstream work from dulwich project
Scott Chacon <schacon@gmail.com>
parents: 2
diff changeset
23
babc85201dc4 merge of upstream work from dulwich project
Scott Chacon <schacon@gmail.com>
parents: 2
diff changeset
24
2
c43c02cc803a added dulwich library and got the script to call it for clone
Scott Chacon <schacon@gmail.com>
parents:
diff changeset
25 import client
c43c02cc803a added dulwich library and got the script to call it for clone
Scott Chacon <schacon@gmail.com>
parents:
diff changeset
26 import protocol
c43c02cc803a added dulwich library and got the script to call it for clone
Scott Chacon <schacon@gmail.com>
parents:
diff changeset
27 import repo
c43c02cc803a added dulwich library and got the script to call it for clone
Scott Chacon <schacon@gmail.com>
parents:
diff changeset
28 import server
c43c02cc803a added dulwich library and got the script to call it for clone
Scott Chacon <schacon@gmail.com>
parents:
diff changeset
29
87
babc85201dc4 merge of upstream work from dulwich project
Scott Chacon <schacon@gmail.com>
parents: 2
diff changeset
30 __version__ = (0, 2, 2)