Attachment 'request_standalone.patch'

Download

   1 diff -r ae088388d645 MoinMoin/request/request_standalone.py
   2 --- a/MoinMoin/request/request_standalone.py	Sun Sep 28 00:13:58 2008 +0200
   3 +++ b/MoinMoin/request/request_standalone.py	Sun Sep 28 11:47:43 2008 +0200
   4 @@ -85,11 +85,17 @@
   5              raise RemoteClosedConnection()
   6  
   7      def flush(self):
   8 -        self.wfile.flush()
   9 +        try:
  10 +            self.wfile.flush()
  11 +        except:
  12 +            pass
  13  
  14      def finish(self):
  15          RequestBase.finish(self)
  16 -        self.wfile.flush()
  17 +        try:
  18 +            self.wfile.flush()
  19 +        except:
  20 +            pass
  21  
  22      # Headers ----------------------------------------------------------
  23  

Attached Files

To refer to attachments on a page, use attachment:filename, as shown below in the list of files. Do NOT use the URL of the [get] link, since this is subject to change and can break easily.
  • [get | view] (2008-09-27 22:28:34, 13.9 KB) [[attachment:failure.txt]]
  • [get | view] (2008-09-28 09:48:13, 0.6 KB) [[attachment:request_standalone.patch]]
 All files | Selected Files: delete move to page copy to page

You are not allowed to attach a file to this page.