- 07 Ara, 2017 1 kayıt (commit)
-
-
Garrett Berg yazdı
* fix issue32208: update threading.Semaphore docs and add unit test to validate correct behavior * add test for blocking * Update threading.rst * semaphore: remove documentation validation tests and move 'return value' test to BaseSemaphore
-
- 14 Eyl, 2017 1 kayıt (commit)
-
-
Victor Stinner yazdı
Use _thread.count() to wait until threads exit. The new context manager prevents the "dangling thread" warning.
-
- 13 Eyl, 2017 1 kayıt (commit)
-
-
Victor Stinner yazdı
Try to fix the "Warning -- threading_cleanup() failed to cleanup 1 threads" warning in test.lock_tests: wait a little bit longer to give time to the threads to complete. Warning seen on test_thread and test_importlib.
-
- 23 Haz, 2017 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 29 Nis, 2016 1 kayıt (commit)
-
-
Berker Peksag yazdı
test_reset_internal_locks was looking at Event's _cond._lock. This makes it harder to change internals of the Condition object and makes the test fragile. The test was added by Nir Soffer in 6108d30dde21. Patch by Nir Soffer.
-
- 09 Eki, 2015 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 06 Eki, 2015 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 28 Mar, 2015 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
Free memory, unlock hanging threads.
-
- 26 May, 2014 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 11 Kas, 2013 1 kayıt (commit)
-
-
Kristjan Valur Jonsson yazdı
delaying the main thread so that it doesn't race ahead of the workers.
-
- 30 Tem, 2013 1 kayıt (commit)
-
-
Christian Heimes yazdı
-
- 17 May, 2012 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Most of the import sequence now uses per-module locks rather than the global import lock, eliminating well-known issues with threads and imports.
-
- 07 Ock, 2012 1 kayıt (commit)
-
-
Charles-François Natali yazdı
return False when the event was set and cleared right after.
-
- 27 Tem, 2011 1 kayıt (commit)
-
-
Charles-François Natali yazdı
to avoid timing-dependent failures.
-
- 30 May, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
threading.get_ident() and document it. This function was used by _thread.get_ident().
-
- 17 May, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
written by Charles-François Natali.
-
- 24 Nis, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
lock was not acquired.
-
- 04 Nis, 2011 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 30 Mar, 2011 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Windows.
-
- 18 Kas, 2010 1 kayıt (commit)
-
-
Kristján Valur Jónsson yazdı
Adding the wait_for() method to threading.Condition
-
- 17 Kas, 2010 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 31 Eki, 2010 1 kayıt (commit)
-
-
Kristján Valur Jónsson yazdı
After increasing the default timeout for the barrier, the unittest for the default timeout must be adjusted
-
- 30 Eki, 2010 1 kayıt (commit)
-
-
Kristján Valur Jónsson yazdı
Increase the default timout of the barries used in the barrier tests. This should solve unexpected timeouts on some machines.
-
- 28 Eki, 2010 2 kayıt (commit)
-
-
Kristján Valur Jónsson yazdı
Add threading.Barrier
-
Georg Brandl yazdı
-
- 17 Nis, 2010 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
`threading.Semaphore` objects. Original patch by Torsten Landschoff.
-
- 14 Nis, 2010 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
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.
-
- 09 Kas, 2009 4 kayıt (commit)
-
-
Antoine Pitrou yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r76138 | antoine.pitrou | 2009-11-06 23:41:14 +0100 (ven., 06 nov. 2009) | 10 lines Merged revisions 76137 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r76137 | antoine.pitrou | 2009-11-06 23:34:35 +0100 (ven., 06 nov. 2009) | 4 lines Issue #7270: Add some dedicated unit tests for multi-thread synchronization primitives such as Lock, RLock, Condition, Event and Semaphore. ........ ................ r76173 | antoine.pitrou | 2009-11-09 17:08:16 +0100 (lun., 09 nov. 2009) | 11 lines Merged revisions 76172 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r76172 | antoine.pitrou | 2009-11-09 17:00:11 +0100 (lun., 09 nov. 2009) | 5 lines Issue #7282: Fix a memory leak when an RLock was used in a thread other than those started through `threading.Thread` (for example, using `thread.start_new_thread()`. ........ ................
-
Antoine Pitrou yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r76137 | antoine.pitrou | 2009-11-06 23:34:35 +0100 (ven., 06 nov. 2009) | 4 lines Issue #7270: Add some dedicated unit tests for multi-thread synchronization primitives such as Lock, RLock, Condition, Event and Semaphore. ........ r76172 | antoine.pitrou | 2009-11-09 17:00:11 +0100 (lun., 09 nov. 2009) | 5 lines Issue #7282: Fix a memory leak when an RLock was used in a thread other than those started through `threading.Thread` (for example, using `thread.start_new_thread()`. ........
-
Antoine Pitrou yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r76172 | antoine.pitrou | 2009-11-09 17:00:11 +0100 (lun., 09 nov. 2009) | 5 lines Issue #7282: Fix a memory leak when an RLock was used in a thread other than those started through `threading.Thread` (for example, using `thread.start_new_thread()`. ........
-
Antoine Pitrou yazdı
than those started through `threading.Thread` (for example, using `thread.start_new_thread()`.
-
- 06 Kas, 2009 2 kayıt (commit)
-
-
Antoine Pitrou yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r76137 | antoine.pitrou | 2009-11-06 23:34:35 +0100 (ven., 06 nov. 2009) | 4 lines Issue #7270: Add some dedicated unit tests for multi-thread synchronization primitives such as Lock, RLock, Condition, Event and Semaphore. ........
-
Antoine Pitrou yazdı
primitives such as Lock, RLock, Condition, Event and Semaphore.
-