Browse Source

Fix compatibility with python 2.4, release 0.2.1.

Jelmer Vernooij 16 years ago
parent
commit
a703df9068
4 changed files with 37 additions and 14 deletions
  1. 6 0
      NEWS
  2. 1 1
      dulwich/__init__.py
  3. 29 12
      dulwich/pack.py
  4. 1 1
      setup.py

+ 6 - 0
NEWS

@@ -1,3 +1,9 @@
+0.2.1	2009-04-30
+
+ BUG FIXES
+
+  * Fix compatibility with Python2.4.
+
 0.2.0	2009-04-30
 
  FEATURES

+ 1 - 1
dulwich/__init__.py

@@ -23,4 +23,4 @@ import protocol
 import repo
 import server
 
-__version__ = (0, 2, 0)
+__version__ = (0, 2, 1)

+ 29 - 12
dulwich/pack.py

@@ -489,19 +489,36 @@ class PackData(object):
         return ret
   
     def iterobjects(self, progress=None):
-        offset = self._header_size
-        num = len(self)
-        map, _ = simple_mmap(self._file, 0, self._size)
-        try:
-            for i in range(num):
-                (type, obj, total_size) = unpack_object(map, offset)
-                crc32 = zlib.crc32(map[offset:offset+total_size]) & 0xffffffff
-                yield offset, type, obj, crc32
-                offset += total_size
+
+        class ObjectIterator(object):
+            
+            def __init__(self, pack):
+                self.i = 0
+                self.offset = pack._header_size
+                self.num = len(pack)
+                self.map, _ = simple_mmap(pack._file, 0, pack._size)
+
+            def __del__(self):
+                self.map.close()
+
+            def __iter__(self):
+                return self
+
+            def __len__(self):
+                return self.num
+            
+            def next(self):
+                if self.i == self.num:
+                    raise StopIteration
+                (type, obj, total_size) = unpack_object(self.map, self.offset)
+                crc32 = zlib.crc32(self.map[self.offset:self.offset+total_size]) & 0xffffffff
+                ret = (self.offset, type, obj, crc32)
+                self.offset += total_size
                 if progress:
-                    progress(i, num)
-        finally:
-            map.close()
+                    progress(self.i, num)
+                self.i+=1
+                return ret
+        return ObjectIterator(self)
   
     def iterentries(self, ext_resolve_ref=None, progress=None):
         found = {}

+ 1 - 1
setup.py

@@ -5,7 +5,7 @@
 from distutils.core import setup
 from distutils.extension import Extension
 
-dulwich_version_string = '0.2.0'
+dulwich_version_string = '0.2.1'
 
 setup(name='dulwich',
       description='Pure-Python Git Library',