diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-07-08 23:47:50 +0200 |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-07-08 23:47:50 +0200 |
commit | 370092071b34da3ed1c2301857e12158794fbe10 (patch) | |
tree | 236d9ee83afb63d8feb92af4890273b7d5a0f547 /Include/Python.h | |
parent | Issue #11863: remove unused file Python/thread_wince.h (diff) | |
download | cpython-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.h | 5 |
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) |