[Python-checkins] python/dist/src/Lib CGIHTTPServer.py,1.25,1.26
gvanrossum@users.sourceforge.net
gvanrossum@users.sourceforge.net
Thu, 01 Aug 2002 14:12:38 -0700
Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv21902
Modified Files:
CGIHTTPServer.py
Log Message:
Fix for SF bug 570678 (can't flush read-only file on Mac OS X).
Index: CGIHTTPServer.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/CGIHTTPServer.py,v
retrieving revision 1.25
retrieving revision 1.26
diff -C2 -d -r1.25 -r1.26
*** CGIHTTPServer.py 1 Jun 2002 19:51:15 -0000 1.25
--- CGIHTTPServer.py 1 Aug 2002 21:12:35 -0000 1.26
***************
*** 194,198 ****
args.append(decoded_query)
nobody = nobody_uid()
- self.rfile.flush() # Always flush before forking
self.wfile.flush() # Always flush before forking
pid = os.fork()
--- 194,197 ----