aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-07-08 23:47:50 +0200
committerAntoine Pitrou <solipsis@pitrou.net>2011-07-08 23:47:50 +0200
commit370092071b34da3ed1c2301857e12158794fbe10 (patch)
tree236d9ee83afb63d8feb92af4890273b7d5a0f547 /Include/Python.h
parentIssue #11863: remove unused file Python/thread_wince.h (diff)
downloadcpython-370092071b34da3ed1c2301857e12158794fbe10.tar.gz
cpython-370092071b34da3ed1c2301857e12158794fbe10.tar.bz2
cpython-370092071b34da3ed1c2301857e12158794fbe10.zip
Issue #11863: Remove support for legacy systems deprecated in Python 3.2
(following PEP 11). These systems are systems using Mach C Threads, SunOS lightweight processes, GNU pth threads and IRIX threads.
Diffstat (limited to 'Include/Python.h')
-rw-r--r--Include/Python.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/Include/Python.h b/Include/Python.h
index db33a76cd4e..31c62807936 100644
--- a/Include/Python.h
+++ b/Include/Python.h
@@ -151,11 +151,6 @@ PyAPI_FUNC(PyObject*) _Py_Mangle(PyObject *p, PyObject *name);
#define Py_file_input 257
#define Py_eval_input 258
-#ifdef HAVE_PTH
-/* GNU pth user-space thread support */
-#include <pth.h>
-#endif
-
/* Define macros for inline documentation. */
#define PyDoc_VAR(name) static char name[]
#define PyDoc_STRVAR(name,str) PyDoc_VAR(name) = PyDoc_STR(str)