diff options
author | Guido van Rossum <guido@python.org> | 1998-10-01 20:42:43 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-10-01 20:42:43 (GMT) |
commit | 49b560698b0bba848c4f8325803a26a4477fb12d (patch) | |
tree | 5d7499463ec66fd0ecbe4608be20eda0d60e6395 /Python/import.c | |
parent | c456d36bdeb07253b87028bcdd657cf40696db31 (diff) | |
download | cpython-49b560698b0bba848c4f8325803a26a4477fb12d.zip cpython-49b560698b0bba848c4f8325803a26a4477fb12d.tar.gz cpython-49b560698b0bba848c4f8325803a26a4477fb12d.tar.bz2 |
Renamed thread.h to pythread.h.
Diffstat (limited to 'Python/import.c')
-rw-r--r-- | Python/import.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/import.c b/Python/import.c index c8bbc29..32dc319 100644 --- a/Python/import.c +++ b/Python/import.c @@ -119,7 +119,7 @@ _PyImport_Fini() #ifdef WITH_THREAD -#include "thread.h" +#include "pythread.h" static type_lock import_lock = 0; static long import_lock_thread = -1; |