瀏覽代碼

Add docstrings.

Jelmer Vernooij 15 年之前
父節點
當前提交
7dd732625b
共有 1 個文件被更改,包括 31 次插入3 次删除
  1. 31 3
      dulwich/repo.py

+ 31 - 3
dulwich/repo.py

@@ -716,14 +716,45 @@ class BaseRepo(object):
                     for section in p.sections())
 
     def commit(self, sha):
+        """Retrieve the commit with a particular SHA.
+
+        :param sha: SHA of the commit to retrieve
+        :raise NotCommitError: If the SHA provided doesn't point at a Commit
+        :raise KeyError: If the SHA provided didn't exist
+        :return: A `Commit` object
+        """
         return self._get_object(sha, Commit)
 
     def tree(self, sha):
+        """Retrieve the tree with a particular SHA.
+
+        :param sha: SHA of the tree to retrieve
+        :raise NotTreeError: If the SHA provided doesn't point at a Tree
+        :raise KeyError: If the SHA provided didn't exist
+        :return: A `Tree` object
+        """
         return self._get_object(sha, Tree)
 
     def tag(self, sha):
+        """Retrieve the tag with a particular SHA.
+
+        :param sha: SHA of the tag to retrieve
+        :raise NotTagError: If the SHA provided doesn't point at a Tag
+        :raise KeyError: If the SHA provided didn't exist
+        :return: A `Tag` object
+        """
         return self._get_object(sha, Tag)
 
+    def get_blob(self, sha):
+        """Retrieve the blob with a particular SHA.
+
+        :param sha: SHA of the blob to retrieve
+        :raise NotBlobError: If the SHA provided doesn't point at a Blob
+        :raise KeyError: If the SHA provided didn't exist
+        :return: A `Blob` object
+        """
+        return self._get_object(sha, Blob)
+
     def get_peeled(self, ref):
         """Get the peeled value of a ref.
 
@@ -742,9 +773,6 @@ class BaseRepo(object):
             obj = self.get_object(sha)
         return obj.id
 
-    def get_blob(self, sha):
-        return self._get_object(sha, Blob)
-
     def revision_history(self, head):
         """Returns a list of the commits reachable from head.