summaryrefslogtreecommitdiffstats
path: root/Modules/_tkinter.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-10-01 20:42:43 (GMT)
committerGuido van Rossum <guido@python.org>1998-10-01 20:42:43 (GMT)
commit49b560698b0bba848c4f8325803a26a4477fb12d (patch)
tree5d7499463ec66fd0ecbe4608be20eda0d60e6395 /Modules/_tkinter.c
parentc456d36bdeb07253b87028bcdd657cf40696db31 (diff)
downloadcpython-49b560698b0bba848c4f8325803a26a4477fb12d.zip
cpython-49b560698b0bba848c4f8325803a26a4477fb12d.tar.gz
cpython-49b560698b0bba848c4f8325803a26a4477fb12d.tar.bz2
Renamed thread.h to pythread.h.
Diffstat (limited to 'Modules/_tkinter.c')
-rw-r--r--Modules/_tkinter.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c
index f619032..e068872 100644
--- a/Modules/_tkinter.c
+++ b/Modules/_tkinter.c
@@ -59,7 +59,7 @@ PERFORMANCE OF THIS SOFTWARE.
#include <ctype.h>
#ifdef WITH_THREAD
-#include "thread.h"
+#include "pythread.h"
#endif
#ifdef MS_WINDOWS
@@ -71,6 +71,10 @@ PERFORMANCE OF THIS SOFTWARE.
#include "myselect.h"
#endif
+#ifdef PYOS_OS2
+#include "myselect.h"
+#endif
+
#include <tcl.h>
#include <tk.h>