aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/sysmodule.c
Commit message (Expand)AuthorAge
* Add _PyThreadState_UncheckedGet()Victor Stinner2016-01-20
* sys.setrecursionlimit() now raises RecursionErrorVictor Stinner2015-10-13
* Issue 24017: Make PyEval_(Set|Get)CoroutineWrapper privateYury Selivanov2015-06-01
* use our normal bracing styleBenjamin Peterson2015-05-12
* Issue #24017: Plug ref leak.Yury Selivanov2015-05-12
* PEP 0492 -- Coroutines with async and await syntax. Issue #24017.Yury Selivanov2015-05-11
* Issue #23752: _Py_fstat() is now responsible to raise the Python exceptionVictor Stinner2015-03-30
* Issue #23451: Update pyconfig.h for Windows to require Vista headers and remo...Steve Dower2015-03-02
* Issue #23152: Implement _Py_fstat() to support files larger than 2 GB on Wind...Steve Dower2015-02-21
* Issue #23181: More "codepoint" -> "code point".Serhiy Storchaka2015-01-18
|\
| * Issue #23181: More "codepoint" -> "code point".Serhiy Storchaka2015-01-18
* | Issue #22696: Add function :func:`sys.is_finalizing` to know about interprete...Antoine Pitrou2014-12-07
* | Issue #22869: Split pythonrun into two modulesNick Coghlan2014-11-20
|/
* Issue #22193: Fixed integer overflow error in sys.getsizeof().Serhiy Storchaka2014-11-15
* Issue #22193: Added private function _PySys_GetSizeOf() needed to implementSerhiy Storchaka2014-08-14
* Issue #21891: remove extraneous semicolon.Ned Deily2014-06-30
* Issue #13204: Calling sys.flags.__new__ would crash the interpreter, now it r...Antoine Pitrou2014-04-28
* undefine SET_SYS_FROM_STRING_BORROW after its done being used (closes #21089)Benjamin Peterson2014-03-28
* Issue #20437: Fixed 22 potential bugs when deleting objects references.Serhiy Storchaka2014-02-09
|\
| * Issue #20437: Fixed 21 potential bugs when deleting objects references.Serhiy Storchaka2014-02-09
* | Issue #16136: Remove VMS support and VMS-related codeChristian Heimes2013-12-21
* | Fix the C definition of the sys._debugmallocstats() function: the function hasVictor Stinner2013-12-19
* | Issue #16404: Add checks for return value of PyLong_FromLong() inSerhiy Storchaka2013-12-17
|\|
| * Issue #16404: Add checks for return value of PyLong_FromLong() inSerhiy Storchaka2013-12-17
* | Fixed leak in sys.flags initialization.Serhiy Storchaka2013-12-17
|\|
| * Fixed leak in sys.flags initialization.Serhiy Storchaka2013-12-17
* | Issue #14432: Remove the thread state field from the frame structure. Fix aVictor Stinner2013-12-13
* | ssue #19183: Implement PEP 456 'secure and interchangeable hash algorithm'.Christian Heimes2013-11-20
* | (Merge 3.3) sysmodule.c: fix sys_update_path(), use Py_ARRAY_LENGTH() to getVictor Stinner2013-11-15
|\|
| * sysmodule.c: fix sys_update_path(), use Py_ARRAY_LENGTH() to get the size ofVictor Stinner2013-11-15
* | Issue #19512, #19515: remove shared identifiers, move identifiers where theyVictor Stinner2013-11-07
* | Issue #19512: add some common identifiers to only create common strings once,Victor Stinner2013-11-06
* | Issue #19512: Add _PySys_GetObjectId() and _PySys_SetObjectId() functionsVictor Stinner2013-11-06
* | Issue #19512: sys_displayhook() now uses an identifier for "builtins"Victor Stinner2013-11-06
* | Issue #18408: Add a new PyFrame_FastToLocalsWithError() function to handleVictor Stinner2013-10-29
* | Issue #18520: fix reference leak in _PySys_Init()Victor Stinner2013-10-27
* | #18839: merge with 3.3.Ezio Melotti2013-08-26
|\|
| * #18839: document that sys.exit() will not accept a non-integer numeric value ...Ezio Melotti2013-08-26
* | Issue #16400: Add command line option for isolated mode.Christian Heimes2013-08-10
* | Issue #18520: Fix _PySys_Init(), handle PyDict_SetItemString() errorsVictor Stinner2013-07-22
* | Issue #18520: Add a new PyStructSequence_InitType2() function, same thanVictor Stinner2013-07-22
* | Issue #15905: Fix theoretical buffer overflow in handling of sys.argv[0],Christian Heimes2013-07-22
|\|
| * Issue #15905: Fix theoretical buffer overflow in handling of sys.argv[0],Christian Heimes2013-07-22
* | #13226: update references from ctypes/DLFCN modules to os moduleAndrew Kuchling2013-06-21
* | Issue #13390: New function :func:`sys.getallocatedblocks()` returns the numbe...Antoine Pitrou2012-12-09
* | RISCOS support has been removed a long time ago. Remove last remains in sys.f...Christian Heimes2012-11-19
* | Issue #16166: Add PY_LITTLE_ENDIAN and PY_BIG_ENDIAN macros and unifiedChristian Heimes2012-10-17
|/
* Issue #15242: Have PyImport_GetMagicTag() return a const char *Brett Cannon2012-07-09
* Issue #14785: Add sys._debugmallocstats() to help debug low-level memory allo...David Malcolm2012-06-22
* Eric Snow's implementation of PEP 421.Barry Warsaw2012-06-03