mercurial/hgweb/request.py
changeset 36850 e85574176467
parent 36848 16292bbda39c
child 36851 d6cd1451212e
--- a/mercurial/hgweb/request.py	Thu Mar 08 17:17:48 2018 -0800
+++ b/mercurial/hgweb/request.py	Sat Mar 10 10:46:08 2018 -0800
@@ -306,16 +306,9 @@
                 if inst[0] != errno.ECONNRESET:
                     raise
 
-    def writelines(self, lines):
-        for line in lines:
-            self.write(line)
-
     def flush(self):
         return None
 
-    def close(self):
-        return None
-
 def wsgiapplication(app_maker):
     '''For compatibility with old CGI scripts. A plain hgweb() or hgwebdir()
     can and should now be used as a WSGI application.'''