Browse Source

Remove unused imports.

Jelmer Vernooij 13 years ago
parent
commit
fdbf283566
2 changed files with 0 additions and 11 deletions
  1. 0 10
      dulwich/object_store.py
  2. 0 1
      dulwich/walk.py

+ 0 - 10
dulwich/object_store.py

@@ -20,19 +20,12 @@
 """Git object store interfaces and implementation."""
 
 
-from cStringIO import StringIO
 import errno
 import itertools
 import os
 import stat
 import tempfile
-import urllib2
 
-from dulwich._compat import (
-    make_sha,
-    SEEK_END,
-    SEEK_CUR,
-    )
 from dulwich.diff_tree import (
     tree_changes,
     walk_trees,
@@ -56,10 +49,7 @@ from dulwich.objects import (
 from dulwich.pack import (
     Pack,
     PackData,
-    obj_sha,
     iter_sha1,
-    load_pack_index,
-    write_pack,
     write_pack_header,
     write_pack_index_v2,
     write_pack_object,

+ 0 - 1
dulwich/walk.py

@@ -27,7 +27,6 @@ except ImportError:
 import collections
 import heapq
 import itertools
-import os
 
 from dulwich._compat import (
     all,