[Python-checkins] r86852 - python/branches/pep-0384/Include/pystate.h

martin.v.loewis python-checkins at python.org
Sun Nov 28 23:42:21 CET 2010


Author: martin.v.loewis
Date: Sun Nov 28 23:42:21 2010
New Revision: 86852

Log:
Exclude PyThreadFrameGetter.


Modified:
   python/branches/pep-0384/Include/pystate.h

Modified: python/branches/pep-0384/Include/pystate.h
==============================================================================
--- python/branches/pep-0384/Include/pystate.h	(original)
+++ python/branches/pep-0384/Include/pystate.h	Sun Nov 28 23:42:21 2010
@@ -213,9 +213,9 @@
 PyAPI_FUNC(PyInterpreterState *) PyInterpreterState_Next(PyInterpreterState *);
 PyAPI_FUNC(PyThreadState *) PyInterpreterState_ThreadHead(PyInterpreterState *);
 PyAPI_FUNC(PyThreadState *) PyThreadState_Next(PyThreadState *);
-#endif
 
 typedef struct _frame *(*PyThreadFrameGetter)(PyThreadState *self_);
+#endif
 
 /* hook for PyEval_GetFrame(), requested for Psyco */
 #ifndef Py_LIMITED_API


More information about the Python-checkins mailing list