diff options
author | Georg Brandl <georg@python.org> | 2008-05-25 13:05:15 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-05-25 13:05:15 (GMT) |
commit | 2067bfdf253e134a4144d3747300dbfcc7cc6203 (patch) | |
tree | 76613f07319d07cc4f0159769131a051504f8c69 /PC/config.c | |
parent | 3b4b45bfe546b023383d4382af7767359390e264 (diff) | |
download | cpython-2067bfdf253e134a4144d3747300dbfcc7cc6203.zip cpython-2067bfdf253e134a4144d3747300dbfcc7cc6203.tar.gz cpython-2067bfdf253e134a4144d3747300dbfcc7cc6203.tar.bz2 |
Rename thread to _thread and dummy_thread to _dummy_thread. Issue #2875.
Diffstat (limited to 'PC/config.c')
-rw-r--r-- | PC/config.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/PC/config.c b/PC/config.c index 1522533..23dbc645 100644 --- a/PC/config.c +++ b/PC/config.c @@ -22,7 +22,7 @@ extern void init_sha1(void); extern void init_sha256(void); extern void init_sha512(void); extern void inittime(void); -extern void initthread(void); +extern void init_thread(void); extern void initcStringIO(void); #ifdef WIN32 extern void initmsvcrt(void); @@ -93,7 +93,7 @@ struct _inittab _PyImport_Inittab[] = { {"_sha512", init_sha512}, {"time", inittime}, #ifdef WITH_THREAD - {"thread", initthread}, + {"_thread", init_thread}, #endif {"cStringIO", initcStringIO}, #ifdef WIN32 |