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 /Modules | |
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 'Modules')
-rw-r--r-- | Modules/Setup.config.in | 2 | ||||
-rw-r--r-- | Modules/_threadmodule.c (renamed from Modules/threadmodule.c) | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Modules/Setup.config.in b/Modules/Setup.config.in index fed62e9..5ac2404 100644 --- a/Modules/Setup.config.in +++ b/Modules/Setup.config.in @@ -4,7 +4,7 @@ # based on configure-time options. # Threading -@USE_THREAD_MODULE@thread threadmodule.c +@USE_THREAD_MODULE@_thread _threadmodule.c # The signal module @USE_SIGNAL_MODULE@signal signalmodule.c diff --git a/Modules/threadmodule.c b/Modules/_threadmodule.c index b8b7fb5..971ff56 100644 --- a/Modules/threadmodule.c +++ b/Modules/_threadmodule.c @@ -688,7 +688,7 @@ unlock it. A thread attempting to lock a lock that it has already locked\n\ will block until another thread unlocks it. Deadlocks may ensue."); PyMODINIT_FUNC -initthread(void) +init_thread(void) { PyObject *m, *d; @@ -699,13 +699,13 @@ initthread(void) return; /* Create the module and add the functions */ - m = Py_InitModule3("thread", thread_methods, thread_doc); + m = Py_InitModule3("_thread", thread_methods, thread_doc); if (m == NULL) return; /* Add a symbolic constant */ d = PyModule_GetDict(m); - ThreadError = PyErr_NewException("thread.error", NULL, NULL); + ThreadError = PyErr_NewException("_thread.error", NULL, NULL); PyDict_SetItemString(d, "error", ThreadError); Locktype.tp_doc = lock_doc; Py_INCREF(&Locktype); |