| Commit message (Expand) | Author | Age | Files | Lines |
* | merge 3.3 | Benjamin Peterson | 2013-01-18 | 1 | -2/+9 |
|\ |
|
| * | check windows fd validity (closes #16992) | Benjamin Peterson | 2013-01-18 | 1 | -2/+9 |
|
|
* | | Issue #16714: use 'raise' exceptions, don't 'throw'. | Andrew Svetlov | 2012-12-18 | 1 | -2/+2 |
|\ \
| |/ |
|
| * | Issue #16714: use 'raise' exceptions, don't 'throw'. | Andrew Svetlov | 2012-12-18 | 1 | -2/+2 |
| |\ |
|
| | * | Issue #16714: use 'raise' exceptions, don't 'throw'. | Andrew Svetlov | 2012-12-18 | 1 | -2/+2 |
|
|
* | | | Get rig of EnvironmentError (#16705) | Andrew Svetlov | 2012-12-17 | 1 | -1/+1 |
|
|
* | | | Issue #16704: Get rid of select.error in stdlib. Use OSError instead. | Andrew Svetlov | 2012-12-17 | 1 | -2/+2 |
|
|
* | | | Remove sys.platform == 'riscos' checks from some Python and test files. #16501 | Christian Heimes | 2012-11-18 | 1 | -3/+0 |
|
|
* | | | Closes #16135: Removal of OS/2 support | Jesus Cea | 2012-10-05 | 1 | -1/+1 |
|/ / |
|
* | | Issue #13964: signal.sigtimedwait() timeout is now a float instead of a tuple | Victor Stinner | 2012-03-02 | 1 | -6/+4 |
|
|
* | | Issue #13084: Fix a test_signal failure: the delivery order is only defined for | Charles-François Natali | 2011-10-02 | 1 | -8/+6 |
|
|
* | | Issue #12469: fix signal order check of test_signal | Victor Stinner | 2011-07-04 | 1 | -5/+6 |
|
|
* | | Issue #12469: test_signal checks wakeup signals order, except on freebsd6 | Victor Stinner | 2011-07-04 | 1 | -4/+4 |
|
|
* | | Issue #12469: partial revert of 024827a9db64, freebsd6 thread initialization | Victor Stinner | 2011-07-04 | 1 | -3/+0 |
|
|
* | | Issue #12469: replace assertions by explicit if+raise | Victor Stinner | 2011-07-04 | 1 | -16/+32 |
|
|
* | | (merge 3.2) Issue #12469: Run wakeup and pending signal tests in a subprocess | Victor Stinner | 2011-07-04 | 1 | -238/+256 |
|\ \
| |/ |
|
| * | Issue #12469: Run "wakeup" signal tests in subprocess to run the test in a | Victor Stinner | 2011-07-04 | 1 | -37/+68 |
|
|
* | | (merge 3.2) Issue #12363: increase the timeout of siginterrupt() tests | Victor Stinner | 2011-07-01 | 1 | -4/+4 |
|\ \
| |/ |
|
| * | Issue #12363: increase the timeout of siginterrupt() tests | Victor Stinner | 2011-07-01 | 1 | -5/+5 |
|
|
| * | Issue #12363: improve siginterrupt() tests | Victor Stinner | 2011-07-01 | 1 | -89/+86 |
|
|
* | | Issue #12303: run sig*wait*() tests in a subprocesss | Victor Stinner | 2011-06-29 | 1 | -56/+81 |
|
|
* | | Fix test_signal on Windows after #12303. | Ross Lagerwall | 2011-06-25 | 1 | -6/+6 |
|
|
* | | Issue #12303: Add sigwaitinfo() and sigtimedwait() to the signal module. | Ross Lagerwall | 2011-06-25 | 1 | -16/+83 |
|
|
* | | Issue #12392: fix thread initialization on FreeBSD 6 | Victor Stinner | 2011-06-24 | 1 | -0/+25 |
|
|
* | | Issue #12363: improve siginterrupt() tests | Victor Stinner | 2011-06-22 | 1 | -0/+7 |
|
|
* | | Close #12363: fix a race condition in siginterrupt() tests | Victor Stinner | 2011-06-20 | 1 | -74/+50 |
|
|
* | | Issue #12316: Fix sigwait() test using threads | Victor Stinner | 2011-06-13 | 1 | -29/+41 |
|
|
* | | Issue #8407: skip sigwait() tests if pthread_sigmask() is missing | Victor Stinner | 2011-06-10 | 1 | -0/+2 |
|
|
* | | Issue #8407: write error message on sigwait test failure | Victor Stinner | 2011-06-10 | 1 | -3/+4 |
|
|
* | | Issue #8407: Make signal.sigwait() tests more reliable | Victor Stinner | 2011-06-10 | 1 | -14/+53 |
|
|
* | | Issue #8407: signal.sigwait() releases the GIL | Victor Stinner | 2011-06-09 | 1 | -0/+19 |
|
|
* | | Issue #8407: test_signal doesn't check signal delivery order | Victor Stinner | 2011-05-31 | 1 | -5/+6 |
|
|
* | | Close #12028: Make threading._get_ident() public, rename it to | Victor Stinner | 2011-05-30 | 1 | -2/+2 |
|
|
* | | Issue #8407: Fix the signal handler of the signal module: if it is called | Victor Stinner | 2011-05-25 | 1 | -4/+32 |
|
|
* | | Issue #8407: Remove debug code from test_signal | Victor Stinner | 2011-05-08 | 1 | -37/+10 |
|
|
* | | Issue #8407: The signal handler writes the signal number as a single byte | Victor Stinner | 2011-05-08 | 1 | -0/+15 |
|
|
* | | Issue #8407: Add pthread_kill(), sigpending() and sigwait() functions to the | Victor Stinner | 2011-05-07 | 1 | -33/+108 |
|
|
* | | Issue #8407: signal.pthread_sigmask() returns a set instead of a list | Victor Stinner | 2011-05-04 | 1 | -15/+18 |
|
|
* | | Issue #11998, issue #8407: workaround _tkinter issue in test_signal | Victor Stinner | 2011-05-04 | 1 | -3/+16 |
|
|
* | | Issue #8407: disable faulthandler timeout thread on all platforms | Victor Stinner | 2011-05-03 | 1 | -14/+13 |
|
|
* | | Issue #8407: pthread_sigmask() checks immediatly if signal handlers have been | Victor Stinner | 2011-05-03 | 1 | -14/+16 |
|
|
* | | Issue #8407: Fix pthread_sigmask() tests on Mac OS X | Victor Stinner | 2011-05-03 | 1 | -0/+15 |
|
|
* | | Issue #8407, issue #11859: Add signal.pthread_sigmask() function to fetch | Victor Stinner | 2011-04-30 | 1 | -1/+55 |
|/ |
|
* | Call reap_children() where appropriate | Antoine Pitrou | 2011-03-20 | 1 | -3/+6 |
|
|
* | Merged revisions 86596 via svnmerge from | Ezio Melotti | 2010-11-21 | 1 | -6/+6 |
|
|
* | Merged revisions 85586-85587,85596-85598 via svnmerge from | Gregory P. Smith | 2010-10-17 | 1 | -2/+2 |
|
|
* | Merged revisions 85140 via svnmerge from | Brian Curtin | 2010-10-01 | 1 | -6/+6 |
|
|
* | Merged revisions 84556 via svnmerge from | Brian Curtin | 2010-09-06 | 1 | -3/+2 |
|
|
* | Merged revisions 83771 via svnmerge from | Brian Curtin | 2010-08-07 | 1 | -6/+6 |
|
|
* | Merged revisions 83763 via svnmerge from | Brian Curtin | 2010-08-06 | 1 | -5/+28 |
|
|