| Commit message (Expand) | Author | Age | Files | Lines |
* | gh-102255: Improve build support for Windows API partitions (GH-102256) | Max Bachmann | 2023-03-09 | 1 | -3/+5 |
* | gh-93937: PyOS_StdioReadline() uses PyConfig.legacy_windows_stdio (#94024) | Victor Stinner | 2022-06-20 | 1 | -1/+2 |
* | bpo-45434: Move _Py_BEGIN_SUPPRESS_IPH to pycore_fileutils.h (GH-28922) | Victor Stinner | 2021-10-13 | 1 | -0/+1 |
* | bpo-30555: Fix WindowsConsoleIO fails in the presence of fd redirection (GH-1... | Segev Finer | 2021-04-23 | 1 | -4/+2 |
* | bpo-38156: Fix compiler warning in PyOS_StdioReadline() (GH-21721) | Victor Stinner | 2020-08-04 | 1 | -1/+1 |
* | closes bpo-38156: Always handle interrupts in PyOS_StdioReadline. (GH-21569) | Benjamin Peterson | 2020-07-28 | 1 | -30/+14 |
* | bpo-40826: Add _PyOS_InterruptOccurred(tstate) function (GH-20599) | Victor Stinner | 2020-06-03 | 1 | -4/+13 |
* | bpo-40826: Fix GIL usage in PyOS_Readline() (GH-20579) | Victor Stinner | 2020-06-01 | 1 | -29/+72 |
* | bpo-40268: Remove explicit pythread.h includes (#19529) | Victor Stinner | 2020-04-15 | 1 | -1/+0 |
* | bpo-40268: Remove a few pycore_pystate.h includes (GH-19510) | Victor Stinner | 2020-04-14 | 1 | -3/+3 |
* | bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-... | Zackery Spytz | 2018-12-07 | 1 | -6/+37 |
* | bpo-35081: Rename internal headers (GH-10275) | Victor Stinner | 2018-11-12 | 1 | -1/+1 |
* | bpo-35081: Add _PyThreadState_GET() internal macro (GH-10266) | Victor Stinner | 2018-11-01 | 1 | -2/+2 |
* | bpo-35081: Add pycore_ prefix to internal header files (GH-10263) | Victor Stinner | 2018-11-01 | 1 | -1/+1 |
* | bpo-30237: Output error when ReadConsole is canceled by CancelSynchronousIo. ... | ValeriyaSinevich | 2018-07-19 | 1 | -1/+4 |
* | bpo-31546: Fix input hook integration (GH-7978) | Thomas A Caswell | 2018-06-28 | 1 | -0/+3 |
* | closes bpo-32460: ensure all non-static globals have initializers (#5061) | Benjamin Peterson | 2017-12-31 | 1 | -2/+2 |
* | bpo-30860: Consolidate stateful runtime globals. (#3397) | Eric Snow | 2017-09-07 | 1 | -0/+1 |
* | bpo-31370: Remove support for threads-less builds (#3385) | Antoine Pitrou | 2017-09-07 | 1 | -20/+0 |
* | Issue #28333: Fixes off-by-one error that was adding an extra space. | Steve Dower | 2016-10-25 | 1 | -1/+2 |
* | Issue #28333: Remove unnecessary increment. | Steve Dower | 2016-10-08 | 1 | -1/+1 |
* | Issue #28333: Enables Unicode for ps1/ps2 and input() prompts. (Patch by Eryk... | Steve Dower | 2016-10-08 | 1 | -4/+24 |
* | merge 3.5 (#28184) | Benjamin Peterson | 2016-09-19 | 1 | -3/+3 |
|\ |
|
* | | Issue #1602: Windows console doesn't input or print Unicode (PEP 528) | Steve Dower | 2016-08-30 | 1 | -0/+113 |
* | | Issue #23524: Finish removing _PyVerify_fd from sources | Steve Dower | 2016-09-08 | 1 | -4/+1 |
|/ |
|
* | Issue #16136: Remove VMS support and VMS-related code | Christian Heimes | 2013-12-21 | 1 | -8/+0 |
* | Issue #1772673: The type of `char*` arguments now changed to `const char*`. | Serhiy Storchaka | 2013-10-19 | 1 | -3/+3 |
* | Issue #16742: My fix on PyOS_StdioReadline() was incomplete, PyMem_FREE() was | Victor Stinner | 2013-10-19 | 1 | -3/+3 |
* | Close #16742: Fix misuse of memory allocations in PyOS_Readline() | Victor Stinner | 2013-10-10 | 1 | -6/+20 |
* | Issue #18368: PyOS_StdioReadline() no longer leaks memory when realloc() fails. | Christian Heimes | 2013-08-06 | 1 | -5/+17 |
|\ |
|
| * | Issue #18368: PyOS_StdioReadline() no longer leaks memory when realloc() fails. | Christian Heimes | 2013-08-06 | 1 | -5/+17 |
* | | Replace WaitForSingleObject with WaitForSingleObjectEx, | Martin v. Löwis | 2013-01-25 | 1 | -1/+1 |
|/ |
|
* | Issue #1677: Handle better a race condition between the interactive interpret... | Tim Golden | 2012-06-29 | 1 | -23/+22 |
* | Issue #14433: Prevent msvcrt crash in interactive prompt when stdin is closed. | Martin v. Löwis | 2012-04-30 | 1 | -1/+4 |
* | Issue #10350: Read and save errno before calling a function which might overw... | Antoine Pitrou | 2011-12-16 | 1 | -1/+3 |
* | Issue #12016: my_fgets() now always clears errors before calling fgets(). Fix | Victor Stinner | 2011-05-30 | 1 | -0/+1 |
* | Issue #1195: Fix input() if it is interrupted by CTRL+d and then CTRL+c, clear | Victor Stinner | 2011-05-10 | 1 | -0/+1 |
|\ |
|
| * | Issue #1195: Fix input() if it is interrupted by CTRL+d and then CTRL+c, | Victor Stinner | 2011-05-10 | 1 | -0/+1 |
* | | (Merge 3.1) Issue #11650: PyOS_StdioReadline() retries fgets() if it was | Victor Stinner | 2011-04-09 | 1 | -45/+49 |
|\ \
| |/ |
|
| * | Issue #11650: PyOS_StdioReadline() retries fgets() if it was interrupted | Victor Stinner | 2011-04-09 | 1 | -4/+5 |
| * | Recorded merge of revisions 81032 via svnmerge from | Antoine Pitrou | 2010-05-09 | 1 | -120/+120 |
* | | Recorded merge of revisions 81029 via svnmerge from | Antoine Pitrou | 2010-05-09 | 1 | -117/+117 |
* | | Merged revisions 77952,78030,78102,78104,78107,78206,78216,78296-78297,78328,... | Benjamin Peterson | 2010-03-21 | 1 | -48/+45 |
|/ |
|
* | Remove RISCOS support | Skip Montanaro | 2007-08-16 | 1 | -13/+0 |
* | Merge p3yk branch with the trunk up to revision 45595. This breaks a fair | Thomas Wouters | 2006-04-21 | 1 | -3/+3 |
* | In a threads-disabled build, typing Ctrl-C into a raw_input() crashed, | Michael W. Hudson | 2005-04-07 | 1 | -0/+4 |
* | PyThreadState_Swap(NULL) didn't do what I thought it did. Fixes | Michael W. Hudson | 2004-07-08 | 1 | -1/+1 |
* | "#if WITH_THREAD" is incorrect; must be #ifdef instead; WITH_THREAD | Tim Peters | 2004-07-07 | 1 | -4/+4 |
* | This closes patch: | Michael W. Hudson | 2004-07-07 | 1 | -3/+38 |
* | Getting rid of support for the ancient Apple MPW compiler. | Jack Jansen | 2003-11-19 | 1 | -7/+0 |