소스 검색

Add note about .close(). Fixes: #922

Jelmer Vernooij 3 년 전
부모
커밋
2a195c69eb
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      dulwich/repo.py

+ 4 - 0
dulwich/repo.py

@@ -1045,6 +1045,10 @@ class Repo(BaseRepo):
     the path of the repository.
 
     To create a new repository, use the Repo.init class method.
+
+    Note that a repository object may hold on to resources such
+    as file handles for performance reasons; call .close() to free
+    up those resources.
     """
 
     def __init__(self, root, object_store=None, bare=None):