- 03 Feb, 2019 2 commits
-
-
Ned Deily authored
-
Minmin Gong authored
Unicode version of Windows APIs are used in places, but not for GetVersionEx in Python/sysmodule.c The wcstok_s is called on Windows in Modules/main.c and PC/launcher.c, but not in Python/pathconfig.c
-
- 02 Feb, 2019 9 commits
-
-
Steve Dower authored
-
Mark Becwar authored
Make sure that failure paths call CloseHandle outside of the function that failed
-
-
Stefan Krah authored
-
Tony Roberts authored
LoadLibrary, GetProcAddress, FreeLibrary and GetModuleHandle acquire the system loader lock. Calling these while holding the GIL will cause a deadlock on the rare occasion that another thread is detaching and needs to destroy its thread state at the same time.
-
Tzu-ping Chung authored
Add one char to MsiSummaryInfoGetProperty() output Based on the patch in bpo-1104 by Anthony Tuininga (atuining) and Mark McMahon (markm).
-
native-api authored
Use correct interpretation of return value from APIs.
-
Cheryl Sabella authored
-
Davin Potts authored
Added shared_memory submodule to multiprocessing in time for first alpha with cross-platform tests soon to follow.
-
- 01 Feb, 2019 10 commits
-
-
Guido van Rossum authored
* Fix leak for # type: ignore * Fix the type comment leak
-
Emily Morehouse authored
-
Xtreak authored
* Add parenthesis optional in named expressions for while statement * Add NEWS entry
-
Amador Pahim authored
-
Joannah Nanjekye authored
-
Victor Stinner authored
-
Victor Stinner authored
The test fails. Skip the test until a fix can be found.
-
Joannah Nanjekye authored
-
Raymond Hettinger authored
-
- 31 Jan, 2019 6 commits
-
-
Raymond Hettinger authored
-
Guido van Rossum authored
-
Phil Jones authored
-
Raymond Hettinger authored
* Change from OrderedDict to a regular dict * Add blurb
-
Inada Naoki authored
-
Michael Selik authored
-
- 30 Jan, 2019 5 commits
-
-
Steve Dower authored
-
Raymond Hettinger authored
-
João Matos authored
-
jdemeyer authored
-
Raymond Hettinger authored
-
- 29 Jan, 2019 2 commits
-
-
Giampaolo Rodola authored
Close pipes/fds in subprocess by using ExitStack. "In case of premature failure on X.Close() or os.close(X) the remaining pipes/fds will remain "open". Perhaps it makes sense to use contextlib.ExitStack." - Rationale: https://github.com/python/cpython/pull/11575#discussion_r250288394
-
Andreas Schwab authored
This fixes the ctypes.test.test_structures.StructureTestCase test. https://bugs.python.org/issue35847
-
- 28 Jan, 2019 2 commits
-
-
Raymond Hettinger authored
-
David H authored
-
- 27 Jan, 2019 2 commits
-
-
nu_no authored
-
Nick Coghlan authored
The previous wording could be read as saying that universal newlines mode itself was deprecated, when it's only the 'U' character in the mode field that should be avoided. The update also moves the description of the 'U' mode character out of the mode table, as the longer explanation was overly intrusive as a table entry and overshadowed the actually useful mode characters.
-
- 26 Jan, 2019 2 commits
-
-
Gregory P. Smith authored
-
Raymond Hettinger authored
-