[Python-checkins] python/dist/src/Lib CGIHTTPServer.py,1.20.8.1,1.20.8.2
gvanrossum@users.sourceforge.net
gvanrossum@users.sourceforge.net
Thu, 01 Aug 2002 14:14:35 -0700
Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv22640
Modified Files:
Tag: release22-maint
CGIHTTPServer.py
Log Message:
Backport:
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.20.8.1
retrieving revision 1.20.8.2
diff -C2 -d -r1.20.8.1 -r1.20.8.2
*** CGIHTTPServer.py 22 Feb 2002 13:22:31 -0000 1.20.8.1
--- CGIHTTPServer.py 1 Aug 2002 21:14:33 -0000 1.20.8.2
***************
*** 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 ----