git: 9front

Download patch

ref: 97dd1f3566f376b67c941c1c1be8b8c091cca450
parent: c02a95c0a7c9923503a4694bbe8a974d353fa66c
author: mischief <mischief@offblast.org>
date: Wed Nov 28 06:34:52 EST 2018

hgwebfs: read to eof by default to match urllib2 behavior

--- a/sys/lib/python/hgext/hgwebfs.py
+++ b/sys/lib/python/hgext/hgwebfs.py
@@ -59,7 +59,7 @@
 		finally:	
 			ctl.close()
 
-	def read(self, amt=4096):
+	def read(self, amt=-1):
 		return self.body.read(amt);
 
 	def close(self):
--