[PATCH 2 of 2] statichttprepo.httprangeheader: implement readlines

Siddharth Agarwal sid0 at fb.com
Sun Nov 17 15:41:06 CST 2013


# HG changeset patch
# User Siddharth Agarwal <sid0 at fb.com>
# Date 1384723878 28800
#      Sun Nov 17 13:31:18 2013 -0800
# Node ID 3072fcfd66e7e568c176ab0ef34865362547a9eb
# Parent  9d6ad1bb67d1290f7600f5575d2e2afb252a216d
statichttprepo.httprangeheader: implement readlines

bookmarks.readcurrent() requires readlines() on file objects returned from
repo.vfs. It isn't used right now but will be in upcoming patches.

diff --git a/mercurial/statichttprepo.py b/mercurial/statichttprepo.py
--- a/mercurial/statichttprepo.py
+++ b/mercurial/statichttprepo.py
@@ -54,8 +54,10 @@
             data = data[:bytes]
         self.pos += len(data)
         return data
+    def readlines(self):
+        return self.read().splitlines(True)
     def __iter__(self):
-        return iter(self.read().splitlines(True))
+        return iter(self.readlines())
     def close(self):
         pass
 


More information about the Mercurial-devel mailing list