Submitter | Siddharth Agarwal |
---|---|
Date | Nov. 17, 2013, 9:41 p.m. |
Message ID | <3072fcfd66e7e568c176.1384724466@dev1091.prn1.facebook.com> |
Download | mbox | patch |
Permalink | /patch/3045/ |
State | Superseded, archived |
Headers | show |
Comments
Patch
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