Code

add flush() to DevNull
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Mon, 3 Nov 2003 23:37:06 +0000 (23:37 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Mon, 3 Nov 2003 23:37:06 +0000 (23:37 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1960 57a73879-2fb5-44c3-a270-3262357dd7e2

CHANGES.txt
cgi-bin/roundup.cgi

index 93ac301827a0300429eb59085deed30ae289c661..f1e46add3e0f552ea2c6ea32a77a49b1a285ebb1 100644 (file)
@@ -24,6 +24,7 @@ Fixed:
   (bug #798659).
 - Remove empty lines before sending strings off to the csv parser 
   (bug #821364).
+- added flush() to DevNull (sf bug #835365)
 
 Cleanup:
 - Replace curuserid attribute on Database with the extended getuid() method.
index 81002a48074b881208fbcb114e0cc8ffd6da1164..bc012945831178a2f880f84dcb5d9f25dd332d45 100755 (executable)
@@ -16,7 +16,7 @@
 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 # 
-# $Id: roundup.cgi,v 1.36 2003-09-04 23:28:50 richard Exp $
+# $Id: roundup.cgi,v 1.37 2003-11-03 23:37:06 richard Exp $
 
 # python version check
 from roundup import version_check
@@ -57,6 +57,8 @@ class DevNull:
         pass
     def close(self):
         pass
+    def flush(self):
+        pass
 #LOG = open('/var/log/roundup.cgi.log', 'a')
 LOG = DevNull()