Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | gh-124008: Fix calculation of the number of written bytes for the Windows ↵ | Serhiy Storchaka | 2024-11-27 | 1 | -0/+23 |
| | | | | | | | | | | | | console (GH-124059) Since MultiByteToWideChar()/WideCharToMultiByte() is not reversible if the data contains invalid UTF-8 sequences, use binary search to calculate the number of written bytes from the number of written characters. Also fix writing incomplete UTF-8 sequences. Also fix handling of memory allocation failures. | ||||
* | gh-115538: Emit warning when use bool as fd in _io.WindowsConsoleIO (GH-116925) | AN Long | 2024-03-18 | 1 | -0/+6 |
| | |||||
* | gh-114561: Mark some tests in ``test_wincosoleio`` with ↵ | Kirill Podoprigora | 2024-01-25 | 1 | -1/+4 |
| | | | | `requires_resource('console')` decorator (GH-114565) | ||||
* | gh-66060: Use actual class name in _io type's __repr__ (#30824) | AN Long | 2024-01-09 | 1 | -0/+10 |
| | | | | | | Use the object's actual class name in the following _io type's __repr__: - FileIO - TextIOWrapper - _WindowsConsoleIO | ||||
* | bpo-45354: Skip obsolete device name tests on Windows 11 (GH-28712) | Jeremy Kloth | 2021-10-05 | 1 | -4/+7 |
| | |||||
* | bpo-40275: Use new test.support helper submodules in tests (GH-21764) | Hai Shi | 2020-08-07 | 1 | -2/+2 |
| | |||||
* | bpo-38325: Skip non-BMP tests of test_winconsoleio (GH-18448) | Victor Stinner | 2020-02-10 | 1 | -0/+6 |
| | | | Skip tests on non-BMP characters of test_winconsoleio. | ||||
* | bpo-37421: test_winconsoleio doesn't leak temp file anymore (GH-14562) | Victor Stinner | 2019-07-03 | 1 | -4/+2 |
| | | | | test_winconsoleio doesn't leak a temporary file anymore: use tempfile.TemporaryFile() to remove it when the test completes. | ||||
* | bpo-31966: Fixed WindowsConsoleIO.write() for writing empty data. (GH-5754) | Serhiy Storchaka | 2018-02-24 | 1 | -0/+4 |
| | |||||
* | Issue #28164: Improves test on Windows 7 | Steve Dower | 2017-02-06 | 1 | -16/+22 |
| | |||||
* | Updates test_winconsoleio to better show the source of its issues. | Steve Dower | 2017-02-05 | 1 | -15/+27 |
| | |||||
* | Issue #28164: Correctly handle special console filenames (patch by Eryk Sun) | Steve Dower | 2017-02-04 | 1 | -1/+27 |
| | |||||
* | Issue #28162: Fixes Ctrl+Z handling in console readall() | Steve Dower | 2016-10-08 | 1 | -16/+22 |
| | |||||
* | Issue #28217: Adds _testconsole module to test console input. Fixes some ↵ | Steve Dower | 2016-10-03 | 1 | -8/+62 |
| | | | | issues found by the tests. | ||||
* | More lenient skipping of console tests. | Steve Dower | 2016-09-08 | 1 | -3/+15 |
| | |||||
* | Skips console open_fd tests when we don't have real consoles. | Steve Dower | 2016-09-08 | 1 | -18/+21 |
| | |||||
* | Issue #1602: Windows console doesn't input or print Unicode (PEP 528) | Steve Dower | 2016-08-31 | 1 | -0/+72 |
Closes #17602: Adds a readline implementation for the Windows console |