Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-40826: Fix test_repl.test_close_stdin() on Windows (GH-20779) | Victor Stinner | 2020-06-10 | 1 | -1/+5 |
| | | | | | | | | | | | | test_repl.test_close_stdin() now calls support.suppress_msvcrt_asserts() to fix the test on Windows. * Move suppress_msvcrt_asserts() from test.libregrtest.setup to test.support. Make its verbose parameter optional: verbose=False by default. * Add msvcrt.GetErrorMode(). * SuppressCrashReport now uses GetErrorMode() and SetErrorMode() of the msvcrt module, rather than using ctypes. * Remove also an unused variable (deadline) in wait_process(). | ||||
* | bpo-40826: Add _PyOS_InterruptOccurred(tstate) function (GH-20599) | Victor Stinner | 2020-06-03 | 1 | -6/+16 |
| | | | | | | | | | | | | my_fgets() now calls _PyOS_InterruptOccurred(tstate) to check for pending signals, rather calling PyOS_InterruptOccurred(). my_fgets() is called with the GIL released, whereas PyOS_InterruptOccurred() must be called with the GIL held. test_repl: use text=True and avoid SuppressCrashReport in test_multiline_string_parsing(). Fix my_fgets() on Windows: fgets(fp) does crash if fileno(fp) is closed. | ||||
* | bpo-39209: Manage correctly multi-line tokens in interactive mode (GH-17860) | Pablo Galindo | 2020-01-06 | 1 | -0/+36 |
| | |||||
* | bpo-30696: Fix the REPL looping endlessly when no memory (GH-4160) | xdegaye | 2017-11-12 | 1 | -0/+62 |