]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Added thread module (it was already in the project!)
authorGuido van Rossum <guido@python.org>
Thu, 22 Aug 1996 00:43:42 +0000 (00:43 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 22 Aug 1996 00:43:42 +0000 (00:43 +0000)
PC/config.c

index b128aaaa12779ec60645a7fbbb6a498bf62c1610..5e37a354aa41587951bb39e8a5d1c2223c10487a 100644 (file)
@@ -50,6 +50,7 @@ extern void initsoundex();
 extern void initstrop();
 extern void initstruct();
 extern void inittime();
+extern void initthread();
 
 /* -- ADDMODULE MARKER 1 -- */
 
@@ -83,6 +84,9 @@ struct _inittab inittab[] = {
         {"strop", initstrop},
         {"struct", initstruct},
         {"time", inittime},
+#ifdef WITH_THREAD
+        {"thread", initthread},
+#endif
 
 /* -- ADDMODULE MARKER 2 -- */