Bladeren bron

Add Tree.items().

Jelmer Vernooij 14 jaren geleden
bovenliggende
commit
dd7fe05372
3 gewijzigde bestanden met toevoegingen van 24 en 2 verwijderingen
  1. 4 0
      NEWS
  2. 13 1
      dulwich/objects.py
  3. 7 1
      dulwich/tests/test_objects.py

+ 4 - 0
NEWS

@@ -1,5 +1,9 @@
 0.7.0	UNRELEASED
 
+ FEATURES
+
+  * Add Tree.items(). (Jelmer Vernooij)
+
 0.6.2	2010-10-16
 
  BUG FIXES

+ 13 - 1
dulwich/objects.py

@@ -811,7 +811,12 @@ class Tree(ShaFile):
         self._needs_serialization = True
 
     def entries(self):
-        """Return a list of tuples describing the tree entries"""
+        """Return a list of tuples describing the tree entries.
+        
+        :note: The order of the tuples that are returned is different from that 
+            returned by the items and iteritems methods. This function will be 
+            deprecated in the future.
+        """
         self._ensure_parsed()
         # The order of this is different from iteritems() for historical
         # reasons
@@ -826,6 +831,13 @@ class Tree(ShaFile):
         self._ensure_parsed()
         return sorted_tree_items(self._entries)
 
+    def items(self):
+        """Return the sorted entries in this tree.
+
+        :return: List with (name, mode, sha) tuples
+        """
+        return list(self.iteritems())
+
     def _deserialize(self, chunks):
         """Grab the entries in the tree"""
         try:

+ 7 - 1
dulwich/tests/test_objects.py

@@ -447,12 +447,18 @@ class TreeTests(ShaFileCheckTests):
         x["a.b"] = (stat.S_IFDIR, "d80c186a03f423a81b39df39dc87fd269736ca86")
         self.assertEquals("07bfcb5f3ada15bbebdfa3bbb8fd858a363925c8", x.id)
 
-    def test_tree_dir_sort(self):
+    def test_tree_iteritems_dir_sort(self):
         x = Tree()
         for name, item in _TREE_ITEMS.iteritems():
             x[name] = item
         self.assertEquals(_SORTED_TREE_ITEMS, list(x.iteritems()))
 
+    def test_tree_items_dir_sort(self):
+        x = Tree()
+        for name, item in _TREE_ITEMS.iteritems():
+            x[name] = item
+        self.assertEquals(_SORTED_TREE_ITEMS, x.items())
+
     def _do_test_parse_tree(self, parse_tree):
         dir = os.path.join(os.path.dirname(__file__), 'data', 'trees')
         o = Tree.from_path(hex_to_filename(dir, tree_sha))