[Python-checkins] r81110 - python/branches/py3k-jit/Util/PySmallPtrSet.h

jeffrey.yasskin python-checkins at python.org
Wed May 12 08:52:19 CEST 2010


Author: jeffrey.yasskin
Date: Wed May 12 08:52:19 2010
New Revision: 81110

Log:
Pull Python.h out of the extern "C" section.


Modified:
   python/branches/py3k-jit/Util/PySmallPtrSet.h

Modified: python/branches/py3k-jit/Util/PySmallPtrSet.h
==============================================================================
--- python/branches/py3k-jit/Util/PySmallPtrSet.h	(original)
+++ python/branches/py3k-jit/Util/PySmallPtrSet.h	Wed May 12 08:52:19 2010
@@ -7,13 +7,12 @@
 #ifndef UTIL_PYSMALLPTRSET_H
 #define UTIL_PYSMALLPTRSET_H
 
+#include "Python.h"
+
 #ifdef __cplusplus
 extern "C" {
 #endif
 
-#include "Python.h"
-
-
 typedef struct PySmallPtrSet PySmallPtrSet;
 typedef void(*PySmallPtrSetCallback)(PyObject *, void *);
 


More information about the Python-checkins mailing list