- 19 Sep, 2016 14 commits
-
-
Victor Stinner authored
Issue #28200: Replace PyUnicode_AsWideCharString() with PyUnicode_AsUnicodeAndSize().
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
(Patch by Xiang Zhang)
-
Raymond Hettinger authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
- Rename Py_ADDRESS_IN_RANGE to address_in_range and make it a static function instead of macro. Any compiler worth its salt will inline this function. - Remove the duplicated function version of Py_ADDRESS_IN_RANGE used when memory analysis was active. Instead, we can simply mark address_in_range as allergic to dynamic memory checking. We can now remove the __attribute__((no_address_safety_analysis)) from _PyObject_Free and _PyObject_Realloc. All the badness is contained in address_in_range now. - Fix the code that tried to only read pool->arenaindex once. Putting something in a variable is no guarantee that it won't be read multiple times. We must use volatile for that.
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
- 18 Sep, 2016 15 commits
-
-
Victor Stinner authored
Issue #28195: Don't expect the fd leak message to be on a specific line number, just make sure that the line is present in the output.
-
Ethan Furman authored
-
Berker Peksag authored
Initial patch by Peter Wirtz.
-
Christian Heimes authored
-
Christian Heimes authored
-
Berker Peksag authored
-
Berker Peksag authored
-
Berker Peksag authored
-
Berker Peksag authored
I forgot there two variations of os.stat() in Python 3.5.
-
Berker Peksag authored
-
Steve Dower authored
-
Steve Dower authored
-
Steve Dower authored
-
Steve Dower authored
-
Steve Dower authored
-
- 17 Sep, 2016 11 commits
-
-
Steve Dower authored
-
Steve Dower authored
-
Steve Dower authored
-
Berker Peksag authored
-
Berker Peksag authored
-
Steve Dower authored
-
Steve Dower authored
Issue #28162: WindowsConsoleIO readall() fails if first line starts with Ctrl+Z Issue #28163: WindowsConsoleIO fileno() passes wrong flags to _open_osfhandle Issue #28164: _PyIO_get_console_type fails for various paths
-
Berker Peksag authored
-
Berker Peksag authored
-
Steve Dower authored
Issue #28138: Windows ._pth file should allow import site
-
Steve Dower authored
-