- 12 Oct, 2013 4 commits
-
-
Antoine Pitrou authored
-
Victor Stinner authored
-
Georg Brandl authored
-
Christian Heimes authored
-
- 11 Oct, 2013 15 commits
-
-
Christian Heimes authored
-
Christian Heimes authored
-
Victor Stinner authored
-
Christian Heimes authored
interpreter startup. stat_result and statvfs_result are now hard-coded to reside in the os module. The patch is based on Victor Stinner's patch.
-
Christian Heimes authored
-
Christian Heimes authored
I forgot to hit save.
-
Christian Heimes authored
to speed up interpreter start.
-
Antoine Pitrou authored
Issue #9548: Add a minimal "_bootlocale" module that is imported by the _io module instead of the full locale module.
-
Antoine Pitrou authored
-
R David Murray authored
time.xmlrpc.com has come and gone over the years, and has been gone again for a while. The test did test one thing that the current xmlrpc tests don't: the use of multiple levels of attribute names in the call. So in addition to removing the network test, we add a test in xmlrpc of dotted name access. There should also be a test for when dotted name access is disallowed, but that requires more extensive test harness refactoring, and in any case was not tested by the network test we are deleting, since it is a server-side setting. This is a slightly simplified version of a patch by Vajrasky Kok.
-
Raymond Hettinger authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
- 10 Oct, 2013 12 commits
-
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
R David Murray authored
Missed changing the doc for the command itself, patch for that also by Connor Osborn.
-
Benjamin Peterson authored
-
R David Murray authored
So that it no longer shadows the print function. Patch by Connor Osborn, doc and test changes by R. David Murray.
-
Victor Stinner authored
The GIL must be held to call PyMem_Malloc(), whereas PyOS_Readline() releases the GIL to read input. The result of the C callback PyOS_ReadlineFunctionPointer must now be a string allocated by PyMem_RawMalloc() or PyMem_RawRealloc() (or NULL if an error occurred), instead of a string allocated by PyMem_Malloc() or PyMem_Realloc(). Fixing this issue was required to setup a hook on PyMem_Malloc(), for example using the tracemalloc module. PyOS_Readline() copies the result of PyOS_ReadlineFunctionPointer() into a new buffer allocated by PyMem_Malloc(). So the public API of PyOS_Readline() does not change.
-
Victor Stinner authored
_PyMem_RawMalloc/Realloc/Free, instead of _PyMem_Malloc/Realloc/Free. So it becomes possible to use the fast pymalloc allocator for the PYMEM_DOMAIN_MEM domain (PyMem_Malloc/Realloc/Free functions).
-
Victor Stinner authored
string. This change does nothing is most cases, but it is useful on Windows in some cases.
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
- 09 Oct, 2013 9 commits
-
-
Tim Peters authored
-
Tim Peters authored
-
Tim Peters authored
-
Tim Peters authored
-
Georg Brandl authored
-
Victor Stinner authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-