[Python-checkins] r78345 - python/trunk/Objects/fileobject.c

andrew.kuchling python-checkins at python.org
Tue Feb 23 00:10:52 CET 2010


Author: andrew.kuchling
Date: Tue Feb 23 00:10:52 2010
New Revision: 78345

Log:
#7706: DONT_HAVE_ERRNO_H is no longer defined by configure (after rev.46819).

Modified:
   python/trunk/Objects/fileobject.c

Modified: python/trunk/Objects/fileobject.c
==============================================================================
--- python/trunk/Objects/fileobject.c	(original)
+++ python/trunk/Objects/fileobject.c	Tue Feb 23 00:10:52 2010
@@ -22,7 +22,7 @@
 
 #define BUF(v) PyString_AS_STRING((PyStringObject *)v)
 
-#ifndef DONT_HAVE_ERRNO_H
+#ifdef HAVE_ERRNO_H
 #include <errno.h>
 #endif
 


More information about the Python-checkins mailing list