- 19 Apr, 2011 18 commits
-
-
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).
-
Victor Stinner authored
It has an undefined behaviour with threads, only use pthread_sigmask() if it is available (and not broken).
-
Ezio Melotti authored
-
Ezio Melotti authored
-
Ezio Melotti authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Vinay Sajip authored
-
Vinay Sajip authored
-
Giampaolo Rodola' authored
os.sendfile(): on Linux if offset parameter is passed as NULL we were erroneously returning a (bytes_sent, None) tuple instead of bytes_sent
-
Georg Brandl authored
-
- 18 Apr, 2011 19 commits
-
-
Nadeem Vawda authored
-
Nadeem Vawda authored
-
Nadeem Vawda authored
Wait for the child process to terminate before ending the test, so that the regrtest cleanup code doesn't get an error when it tries to delete the temporary CWD.
-
R David Murray authored
-
R David Murray authored
-
R David Murray authored
-
R David Murray authored
This new interface will also allow for future planned enhancements in control over the parser/generator without requiring any additional complexity in the parser/generator API. Patch reviewed by Éric Araujo and Barry Warsaw.
-
Victor Stinner authored
Py_AddPendingCall() for the first signal to fix a deadlock on reentrant or parallel calls. PyErr_SetInterrupt() writes also into the wake up file.
-
Victor Stinner authored
Py_AddPendingCall() for the first signal to fix a deadlock on reentrant or parallel calls. PyErr_SetInterrupt() writes also into the wake up file.
-
Victor Stinner authored
Py_AddPendingCall() for the first signal to fix a deadlock on reentrant or parallel calls. PyErr_SetInterrupt() writes also into the wake up file.
-
R David Murray authored
-
R David Murray authored
-
Ezio Melotti authored
-
Ezio Melotti authored
-
Ezio Melotti authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
- 16 Apr, 2011 3 commits
-
-
Ezio Melotti authored
-
Ezio Melotti authored
-
Antoine Pitrou authored
-