فهرست منبع

Add docstrings for new Pack methods.

Jelmer Vernooij 2 سال پیش
والد
کامیت
e2d62399dd
1فایلهای تغییر یافته به همراه14 افزوده شده و 0 حذف شده
  1. 14 0
      dulwich/pack.py

+ 14 - 0
dulwich/pack.py

@@ -2204,10 +2204,24 @@ class Pack(object):
         return base_type, chunks
 
     def entries(self, progress=None):
+        """Yield entries summarizing the contents of this pack.
+
+        Args:
+          progress: Progress function, called with current and total
+            object count.
+        Returns: iterator of tuples with (sha, offset, crc32)
+        """
         return self.data.iterentries(
             progress=progress, resolve_ext_ref=self.resolve_ext_ref)
 
     def sorted_entries(self, progress=None):
+        """Return entries in this pack, sorted by SHA.
+
+        Args:
+          progress: Progress function, called with current and total
+            object count
+        Returns: Iterator of tuples with (sha, offset, crc32)
+        """
         return self.data.sorted_entries(
             progress=progress, resolve_ext_ref=self.resolve_ext_ref)