diff dulwich/pack.py @ 86:3ce739f2bd7e

remove debugging statement
author Scott Chacon <schacon@gmail.com>
date Fri, 08 May 2009 15:06:38 -0700
parents 81b78a91f2f5
children babc85201dc4
line wrap: on
line diff
--- a/dulwich/pack.py
+++ b/dulwich/pack.py
@@ -114,7 +114,7 @@
     :param access: Access mechanism.
     :return: MMAP'd area.
     """
-    print f, offset, size
+    #print f, offset, size
     if supports_mmap_offset:
         mem = mmap.mmap(f.fileno(), size + offset % mmap.PAGESIZE, access=access,
                 offset=offset / mmap.PAGESIZE * mmap.PAGESIZE)