An error occurred fetching the project authors.
- 07 Feb, 2014 1 commit
-
-
Serhiy Storchaka authored
-
- 13 Dec, 2013 1 commit
-
-
Victor Stinner authored
Fix a crash when a generator is created in a C thread that is destroyed while the generator is still used. The issue was that a generator contains a frame, and the frame kept a reference to the Python state of the destroyed C thread. The crash occurs when a trace function is setup.
-
- 10 Dec, 2013 1 commit
-
-
Zachary Ware authored
-
- 09 Oct, 2013 1 commit
-
-
Tim Peters authored
(grafted from e06edc0c7a4951327f0c95ebeebccba6879a6063)
-
- 30 Aug, 2013 1 commit
-
-
Charles-François Natali authored
Patch by A. Jesse Jiryu Davis.
-
- 17 Jan, 2013 1 commit
-
-
Stefan Krah authored
-
- 29 Jun, 2012 1 commit
-
-
Antoine Pitrou authored
-
- 19 Apr, 2012 2 commits
-
-
Antoine Pitrou authored
Issue #14308: Fix an exception when a "dummy" thread is in the threading module's active list after a fork().
-
Antoine Pitrou authored
Issue #14308: Fix an exception when a "dummy" thread is in the threading module's active list after a fork().
-
- 24 Mar, 2012 1 commit
-
-
Charles-François Natali authored
to a known bug in pthread implementation on FreeBSD < 7).
-
- 08 Feb, 2012 2 commits
-
-
Charles-François Natali authored
can't be called reliably from a worker thread.
-
Charles-François Natali authored
can't be called reliably from a worker thread.
-
- 02 Feb, 2012 2 commits
-
-
Charles-François Natali authored
a random deadlock when fork() is called in a multithreaded process in debug mode, and make PyOS_AfterFork() more robust.
-
Charles-François Natali authored
a random deadlock when fork() is called in a multithreaded process in debug mode, and make PyOS_AfterFork() more robust.
-
- 28 Jan, 2012 1 commit
-
-
Charles-François Natali authored
by Matt Joiner.
-
- 01 Jul, 2011 1 commit
-
-
Victor Stinner authored
with known OS bugs Share the list of platforms with known OS bugs with other tests. Patch written by Charles-François Natali.
-
- 30 Jun, 2011 1 commit
-
-
Victor Stinner authored
needed. Remove also an unused variable (blank) in test_threading.
-
- 01 Jul, 2011 1 commit
-
-
Victor Stinner authored
with known OS bugs Share the list of platforms with known OS bugs with other tests. Patch written by Charles-François Natali.
-
- 30 May, 2011 1 commit
-
-
Victor Stinner authored
threading.get_ident() and document it. This function was used by _thread.get_ident().
-
- 28 May, 2011 2 commits
-
-
Ned Deily authored
Mac OS X and FreeBSD to reduce the chances of a crash instead of a "maximum recursion depth" RuntimeError exception. (patch by Ronald Oussoren)
-
Ned Deily authored
Mac OS X and FreeBSD to reduce the chances of a crash instead of a "maximum recursion depth" RuntimeError exception. (patch by Ronald Oussoren)
-
- 05 May, 2011 1 commit
-
-
Antoine Pitrou authored
-
- 04 May, 2011 1 commit
-
-
Antoine Pitrou authored
interpreter is shutting down; instead, these threads are now killed when they try to take the GIL.
-
- 30 Apr, 2011 1 commit
-
-
Victor Stinner authored
-
- 19 Apr, 2011 1 commit
-
-
Victor Stinner authored
thread implementation. Skip test_lock_acquire_interruption() and test_rlock_acquire_interruption() of test_threadsignals if a thread lock is implemented using a POSIX mutex and a POSIX condition variable. A POSIX condition variable cannot be interrupted by a signal (e.g. on Linux, the futex system call is restarted).
-
- 09 Apr, 2011 4 commits
-
-
Ned Deily authored
and on OS X with pydebug.
-
Ned Deily authored
and on OS X with pydebug.
-
Ned Deily authored
Mac OS X and FreeBSD to reduce the chances of a crash instead of a "maximum recursion depth" RuntimeError exception. (Patch by Ronald Oussoren)
-
Ned Deily authored
Mac OS X and FreeBSD to reduce the chances of a crash instead of a "maximum recursion depth" RuntimeError exception. (Patch by Ronald Oussoren)
-
- 16 Mar, 2011 2 commits
-
-
Ezio Melotti authored
-
Ezio Melotti authored
-
- 28 Feb, 2011 1 commit
-
-
Antoine Pitrou authored
to release an unacquired lock, as claimed in the threading documentation. The _thread.error exception is now an alias of RuntimeError.
-
- 25 Feb, 2011 1 commit
-
-
Antoine Pitrou authored
and multiprocessing.Process constructors in order to override the default behaviour of inheriting the daemonic property from the current thread/process.
-
- 06 Jan, 2011 1 commit
-
-
Raymond Hettinger authored
-
- 05 Jan, 2011 1 commit
-
-
Victor Stinner authored
Popen.communicate() avoids deadlocks and close the pipes when done. This commit fixes a ResourceWarning(unclosed pipe).
-
- 04 Jan, 2011 2 commits
-
-
Gregory P. Smith authored
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r87710 | gregory.p.smith | 2011-01-03 13:06:12 -0800 (Mon, 03 Jan 2011) | 4 lines issue6643 - Two locks held within the threading module on each thread instance needed to be reinitialized after fork(). Adds tests to confirm that they are and that a potential deadlock and crasher bug are fixed (platform dependant). ........ This required a bit more fiddling for 2.x as __block and __started are __ private as well as the __started Event's __cond. A new "private" _reset_internal_locks() method is added to Thread and _Event objects to address this.
-
Gregory P. Smith authored
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r87710 | gregory.p.smith | 2011-01-03 13:06:12 -0800 (Mon, 03 Jan 2011) | 4 lines issue6643 - Two locks held within the threading module on each thread instance needed to be reinitialized after fork(). Adds tests to confirm that they are and that a potential deadlock and crasher bug are fixed (platform dependant). ........
-
- 03 Jan, 2011 1 commit
-
-
Gregory P. Smith authored
needed to be reinitialized after fork(). Adds tests to confirm that they are and that a potential deadlock and crasher bug are fixed (platform dependant).
-
- 21 Nov, 2010 2 commits
-
-
Ezio Melotti authored
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86596 | ezio.melotti | 2010-11-20 21:04:17 +0200 (Sat, 20 Nov 2010) | 1 line #9424: Replace deprecated assert* methods in the Python test suite. ........
-
Ezio Melotti authored
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86596 | ezio.melotti | 2010-11-20 21:04:17 +0200 (Sat, 20 Nov 2010) | 1 line #9424: Replace deprecated assert* methods in the Python test suite. ........
-