[Python-checkins] r85864 - python/branches/py3k/Modules/_io/_iomodule.c

antoine.pitrou python-checkins at python.org
Wed Oct 27 21:45:43 CEST 2010


Author: antoine.pitrou
Date: Wed Oct 27 21:45:43 2010
New Revision: 85864

Log:
In open(), only set the buffer size from st.st_blksize when it is greater
than 1.  This matches the pure Python implementation in _pyio and should
fix a couple of failures on the NetBSD buildbot.



Modified:
   python/branches/py3k/Modules/_io/_iomodule.c

Modified: python/branches/py3k/Modules/_io/_iomodule.c
==============================================================================
--- python/branches/py3k/Modules/_io/_iomodule.c	(original)
+++ python/branches/py3k/Modules/_io/_iomodule.c	Wed Oct 27 21:45:43 2010
@@ -451,7 +451,7 @@
             if (fileno == -1 && PyErr_Occurred())
                 goto error;
 
-            if (fstat(fileno, &st) >= 0)
+            if (fstat(fileno, &st) >= 0 && st.st_blksize > 1)
                 buffering = st.st_blksize;
         }
 #endif


More information about the Python-checkins mailing list