hgweb: use string join instead of slower cStringIO stable
authorSune Foldager <cryo@cyanite.org>
Tue, 23 Feb 2010 11:37:40 -0500
branchstable
changeset 10531 e3eff76552f1
parent 10530 ed87b6c60e0b
child 10533 184cdb66263e
hgweb: use string join instead of slower cStringIO
mercurial/hgweb/protocol.py
--- a/mercurial/hgweb/protocol.py	Tue Feb 23 11:34:08 2010 -0500
+++ b/mercurial/hgweb/protocol.py	Tue Feb 23 11:37:40 2010 -0500
@@ -64,10 +64,7 @@
 def between(repo, req):
     pairs = [map(bin, p.split("-"))
              for p in req.form['pairs'][0].split(" ")]
-    resp = cStringIO.StringIO()
-    for b in repo.between(pairs):
-        resp.write(" ".join(map(hex, b)) + "\n")
-    resp = resp.getvalue()
+    resp = ''.join(" ".join(map(hex, b)) + "\n" for b in repo.between(pairs))
     req.respond(HTTP_OK, HGTYPE, length=len(resp))
     yield resp