Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-36688: Adding an implementation of RLock in _dummy_thread (GH-12943) | Miss Islington (bot) | 2019-06-17 | 1 | -1/+31 |
| | | | | | (cherry picked from commit c5905f39bcf4ef895d42eede41bb5a2f071a501d) Co-authored-by: Joost Lek <vlabakje@gmail.com> | ||||
* | Revert "bpo-36084: Add native thread ID to threading.Thread objects ↵ | Victor Stinner | 2019-05-21 | 1 | -4/+0 |
| | | | | | (GH-11993)" (GH-13458) This reverts commit 4959c33d2555b89b494c678d99be81a65ee864b0. | ||||
* | bpo-36084: Add native thread ID to threading.Thread objects (GH-11993) | Jake Tesler | 2019-05-12 | 1 | -0/+4 |
| | |||||
* | Restore dummy_threading and _dummy_thread, but deprecate them (bpo-31370) ↵ | Antoine Pitrou | 2017-09-18 | 1 | -0/+163 |
| | | | | (#3648) | ||||
* | bpo-31370: Remove support for threads-less builds (#3385) | Antoine Pitrou | 2017-09-07 | 1 | -163/+0 |
| | | | | | | * Remove Setup.config * Always define WITH_THREAD for compatibility. | ||||
* | bpo-6532: Make the thread id an unsigned integer. (#781) | Serhiy Storchaka | 2017-03-23 | 1 | -1/+1 |
| | | | | | | | | | | | * bpo-6532: Make the thread id an unsigned integer. From C API side the type of results of PyThread_start_new_thread() and PyThread_get_thread_ident(), the id parameter of PyThreadState_SetAsyncExc(), and the thread_id field of PyThreadState changed from "long" to "unsigned long". * Restore a check in thread_get_ident(). | ||||
* | Issue 21137: Better repr for threading.Lock() | Raymond Hettinger | 2014-05-26 | 1 | -0/+8 |
| | |||||
* | Issue #18808: Thread.join() now waits for the underlying thread state to be ↵ | Antoine Pitrou | 2013-09-07 | 1 | -0/+4 |
| | | | | | | destroyed before returning. This prevents unpredictable aborts in Py_EndInterpreter() when some non-daemon threads are still running. | ||||
* | Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) | Brett Cannon | 2013-07-04 | 1 | -1/+1 |
| | |||||
* | Issue #18200: Update the stdlib (except tests) to use | Brett Cannon | 2013-06-14 | 1 | -1/+1 |
| | | | | ModuleNotFoundError. | ||||
* | Issue #11223: Replace threading._info() by sys.thread_info | Victor Stinner | 2011-04-30 | 1 | -3/+0 |
| | |||||
* | Issue #11223: fix test_dummy_threading, add _dummy_thread.info() | Victor Stinner | 2011-04-19 | 1 | -0/+3 |
| | |||||
* | Followup to issue #11140 and r88682: also patch _dummy_thread. | Antoine Pitrou | 2011-03-01 | 1 | -5/+1 |
| | | | | Patch by Aymeric Augustin. | ||||
* | Fix bootstrap issues when building without threads | Antoine Pitrou | 2010-11-05 | 1 | -4/+8 |
| | |||||
* | Issue #7316: the acquire() method of lock objects in the :mod:`threading` | Antoine Pitrou | 2010-04-14 | 1 | -1/+7 |
| | | | | | | module now takes an optional timeout argument in seconds. Timeout support relies on the system threading library, so as to avoid a semi-busy wait loop. | ||||
* | Merged revisions 65787 via svnmerge from | Brett Cannon | 2008-08-17 | 1 | -1/+0 |
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r65787 | brett.cannon | 2008-08-17 15:10:11 -0700 (Sun, 17 Aug 2008) | 3 lines Remove imports of 'warnings' that are no longer needed in dummy_thread, filecmp, and shelve. ........ | ||||
* | Merged revisions 64903 via svnmerge from | Brett Cannon | 2008-07-13 | 1 | -6/+3 |
| | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r64903 | brett.cannon | 2008-07-12 18:15:07 -0700 (Sat, 12 Jul 2008) | 6 lines dummy_thread.acquire() would return None if no waitflag argument was given. It should have returned True. Fixes issue #3339. Thanks, Henk Punt for the report and Andrii v. Mishkovskiyi for attempting a patch. ........ | ||||
* | Rename thread to _thread and dummy_thread to _dummy_thread. Issue #2875. | Georg Brandl | 2008-05-25 | 1 | -0/+149 |