Kiln » Dependencies » Dulwich Read More
Clone URL:  
Pushed to one repository · View In Graph Contained in master-1, master-0, and 0.9.4

Remove unused imports.

Changeset fdbf28356688

Parent 57e882cba1d0

by Jelmer Vernooij

Changes to 2 files · Browse files at fdbf28356688 Showing diff from parent 57e882cba1d0 Diff from another changeset...

 
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
 
36
37
38
 
56
57
58
59
60
61
62
63
64
65
 
20
21
22
 
23
24
25
26
27
 
 
 
 
 
 
 
28
29
30
31
 
49
50
51
 
52
 
 
53
54
55
@@ -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.pack import (   Pack,   PackData, - obj_sha,   iter_sha1, - load_pack_index, - write_pack,   write_pack_header,   write_pack_index_v2,   write_pack_object,
Change 1 of 1 Show Entire File dulwich/​walk.py Stacked
 
27
28
29
30
31
32
33
 
27
28
29
 
30
31
32
@@ -27,7 +27,6 @@
 import collections  import heapq  import itertools -import os    from dulwich._compat import (   all,