mirror of
https://github.com/python/cpython.git
synced 2025-11-02 03:01:58 +00:00
Added thread module (it was already in the project!)
This commit is contained in:
parent
331a8973ac
commit
bf57ed5f95
1 changed files with 4 additions and 0 deletions
|
|
@ -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 -- */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue