| Commit message (Expand) | Author | Age | Files | Lines |
* | GH-102397: Fix segfault from race condition in signal handling (#102399) | Kumar Aditya | 2023-03-08 | 1 | -0/+15 |
|
|
* | Call busy_retry() and sleeping_retry() with error=True (#93871) | Victor Stinner | 2022-06-16 | 1 | -11/+3 |
|
|
* | Tests call sleeping_retry() with SHORT_TIMEOUT (#93870) | Victor Stinner | 2022-06-15 | 1 | -2/+2 |
|
|
* | Add test.support.busy_retry() (#93770) | Victor Stinner | 2022-06-15 | 1 | -12/+13 |
|
|
* | gh-90473: Decrease recursion limit and skip tests on WASI (GH-92803) | Christian Heimes | 2022-05-19 | 1 | -0/+6 |
|
|
* | gh-90473: WASI: Mark tests that require os.pipe() (GH-92837) | Christian Heimes | 2022-05-16 | 1 | -0/+4 |
|
|
* | gh-64783: Don't check value of SIG_DFL and SIG_IGN (#92350) | Christian Heimes | 2022-05-05 | 1 | -0/+3 |
|
|
* | gh-64783: Fix signal.NSIG value on FreeBSD (#91929) | Victor Stinner | 2022-04-25 | 1 | -0/+10 |
|
|
* | bpo-40280: Detect missing threading on WASM platforms (GH-32352) | Christian Heimes | 2022-04-07 | 1 | -0/+6 |
|
|
* | bpo-40280: Skip wakeup_fd pipe tests on Emscripten (GH-31909) | Christian Heimes | 2022-03-15 | 1 | -0/+5 |
|
|
* | bpo-40280: Skip subprocess-based tests on wasm32-emscripten (GH-30615) | Christian Heimes | 2022-01-25 | 1 | -0/+3 |
|
|
* | bpo-40066: [Enum] skip failing doc test (GH-30637) | Kumar Aditya | 2022-01-17 | 1 | -1/+1 |
|
|
* | Revert "bpo-40066: [Enum] update str() and format() output (GH-30582)" (GH-3... | Victor Stinner | 2022-01-17 | 1 | -1/+1 |
|
|
* | bpo-40066: [Enum] update str() and format() output (GH-30582) | Ethan Furman | 2022-01-16 | 1 | -1/+1 |
|
|
* | bpo-27718: Fix help for the signal module (GH-30063) | Serhiy Storchaka | 2021-12-13 | 1 | -0/+9 |
|
|
* | bpo-43957: [Enum] Deprecate ``TypeError`` from containment checks. (GH-25670) | Ethan Furman | 2021-04-27 | 1 | -1/+1 |
|
|
* | bpo-38659: [Enum] add _simple_enum decorator (GH-25497) | Ethan Furman | 2021-04-21 | 1 | -0/+27 |
|
|
* | Revert "bpo-38659: [Enum] add _simple_enum decorator (GH-25285)" (GH-25476) | Ethan Furman | 2021-04-20 | 1 | -27/+0 |
|
|
* | bpo-38659: [Enum] add _simple_enum decorator (GH-25285) | Ethan Furman | 2021-04-20 | 1 | -0/+27 |
|
|
* | bpo-40066: Enum: modify `repr()` and `str()` (GH-22392) | Ethan Furman | 2021-03-31 | 1 | -1/+1 |
|
|
* | bpo-43406: Fix test_signal.test_stress_modifying_handlers() (GH-24815) | Victor Stinner | 2021-03-10 | 1 | -3/+13 |
|
|
* | bpo-43406: Fix possible race condition where ``PyErr_CheckSignals`` tries to ... | Antoine Pitrou | 2021-03-05 | 1 | -0/+50 |
|
|
* | bpo-31904: Support signal module on VxWorks (GH-23391) | pxinwr | 2020-11-30 | 1 | -3/+10 |
|
|
* | bpo-42413: socket.timeout is now an alias of TimeoutError (GH-23413) | Christian Heimes | 2020-11-20 | 1 | -1/+1 |
|
|
* | bpo-40275: Use new test.support helper submodules in tests (GH-21449) | Hai Shi | 2020-08-03 | 1 | -1/+2 |
|
|
* | bpo-39424: Use assertRaisesRegex instead of assertRaisesRegexp. (GH-18277) | damani42 | 2020-01-30 | 1 | -1/+1 |
|
|
* | bpo-39157: Skip test_pidfd_send_signal if the system does not have enough pri... | Pablo Galindo | 2019-12-29 | 1 | -0/+2 |
|
|
* | bpo-38614: Use test.support.SHORT_TIMEOUT constant (GH-17566) | Victor Stinner | 2019-12-11 | 1 | -3/+3 |
|
|
* | closes bpo-38712: Add signal.pidfd_send_signal. (GH-17070) | Benjamin Peterson | 2019-11-20 | 1 | -0/+19 |
|
|
* | Remove unused imports in tests (GH-14518) | Victor Stinner | 2019-07-01 | 1 | -1/+0 |
|
|
* | bpo-36013: delete fragile interactive shell SIGINT test (GH-11902) | Gregory P. Smith | 2019-02-17 | 1 | -33/+7 |
|
|
* | bpo-1054041: Exit properly after an uncaught ^C. (#11862) | Gregory P. Smith | 2019-02-16 | 1 | -4/+57 |
|
|
* | bpo-35568: add 'raise_signal' function (GH-11335) | Vladimir Matveev | 2019-01-08 | 1 | -12/+44 |
|
|
* | bpo-35513: Replace time.time() with time.monotonic() in tests (GH-11182) | Victor Stinner | 2018-12-17 | 1 | -5/+5 |
|
|
* | bpo-34412: Make signal.strsignal() work on HP-UX (GH-8786) | Michael Osipov | 2018-08-23 | 1 | -0/+1 |
|
|
* | bpo-34130: Fix test_signal.test_warn_on_full_buffer() (GH-8327) | Victor Stinner | 2018-07-18 | 1 | -15/+41 |
|
|
* | bpo-34130: Fix test_signal.test_socket() (GH-8326) | Victor Stinner | 2018-07-18 | 1 | -1/+0 |
|
|
* | bpo-33441: Make the sigset_t converter available in other modules. (GH-6720) | Serhiy Storchaka | 2018-05-08 | 1 | -0/+4 |
|
|
* | bpo-33332: Add signal.valid_signals() (GH-6581) | Antoine Pitrou | 2018-05-04 | 1 | -0/+30 |
|
|
* | bpo-22674: fix test_strsignal on OSX (GH-6085) | Antoine Pietri | 2018-03-12 | 1 | -2/+2 |
|
|
* | signal: add strsignal() (#6017) | Antoine Pietri | 2018-03-12 | 1 | -0/+6 |
|
|
* | bpo-32593: Drop FreeBSD 9 and older support (#5232) | Victor Stinner | 2018-01-22 | 1 | -20/+1 |
|
|
* | bpo-30050: Allow disabling full buffer warnings in signal.set_wakeup_fd (#4792) | Nathaniel J. Smith | 2017-12-18 | 1 | -0/+92 |
|
|
* | bpo-31370: Remove support for threads-less builds (#3385) | Antoine Pitrou | 2017-09-07 | 1 | -6/+1 |
|
|
* | bpo-30807: signal.setitimer() may disable the timer by mistake (#2493) | Antoine Pitrou | 2017-06-30 | 1 | -0/+9 |
|
|
* | bpo-30796: Fix failures in signal delivery stress test (#2488) | Antoine Pitrou | 2017-06-29 | 1 | -15/+50 |
|
|
* | bpo-30703: Improve signal delivery (#2415) | Antoine Pitrou | 2017-06-28 | 1 | -0/+96 |
|
|
* | bpo-29919: Remove unused imports found by pyflakes (#137) | Victor Stinner | 2017-03-27 | 1 | -6/+5 |
|
|
* | Remove unused imports. | Serhiy Storchaka | 2016-12-16 | 1 | -4/+0 |
|
|
* | Issue #26566: Rewrite test_signal.InterProcessSignalTests | Victor Stinner | 2016-03-15 | 1 | -162/+9 |
|
|