[Python-checkins] r86057 - python/branches/pep-0384/Include/pyerrors.h

martin.v.loewis python-checkins at python.org
Sun Oct 31 19:49:13 CET 2010


Author: martin.v.loewis
Date: Sun Oct 31 19:49:13 2010
New Revision: 86057

Log:
Exclude non-exported function from ABI.

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

Modified: python/branches/pep-0384/Include/pyerrors.h
==============================================================================
--- python/branches/pep-0384/Include/pyerrors.h	(original)
+++ python/branches/pep-0384/Include/pyerrors.h	Sun Oct 31 19:49:13 2010
@@ -229,7 +229,9 @@
 PyAPI_FUNC(void) PyErr_SetInterrupt(void);
 
 /* In signalmodule.c */
+#ifndef Py_LIMITED_API
 int PySignal_SetWakeupFd(int fd);
+#endif
 
 /* Support for adding program text to SyntaxErrors */
 PyAPI_FUNC(void) PyErr_SyntaxLocation(const char *, int);


More information about the Python-checkins mailing list