summaryrefslogtreecommitdiff
path: root/Python/sysmodule.c
Commit message (Expand)AuthorAgeFilesLines
...
* Issue #20437: Fixed 22 potential bugs when deleting objects references.Serhiy Storchaka2014-02-091-100/+158
|\
| * Issue #16136: Remove VMS support and VMS-related codeChristian Heimes2013-12-211-19/+0
| * Fix the C definition of the sys._debugmallocstats() function: the function hasVictor Stinner2013-12-191-1/+1
| * Issue #16404: Add checks for return value of PyLong_FromLong() inSerhiy Storchaka2013-12-171-0/+4
| |\
| * \ Fixed leak in sys.flags initialization.Serhiy Storchaka2013-12-171-0/+1
| |\ \
| * | | Issue #14432: Remove the thread state field from the frame structure. Fix aVictor Stinner2013-12-131-5/+3
| * | | ssue #19183: Implement PEP 456 'secure and interchangeable hash algorithm'.Christian Heimes2013-11-201-2/+18
| * | | (Merge 3.3) sysmodule.c: fix sys_update_path(), use Py_ARRAY_LENGTH() to getVictor Stinner2013-11-151-73/+136
| |\ \ \
| | * | | Issue #19512, #19515: remove shared identifiers, move identifiers where theyVictor Stinner2013-11-071-14/+17
| | * | | Issue #19512: add some common identifiers to only create common strings once,Victor Stinner2013-11-061-11/+11
| | * | | Issue #19512: Add _PySys_GetObjectId() and _PySys_SetObjectId() functionsVictor Stinner2013-11-061-0/+25
| | * | | Issue #19512: sys_displayhook() now uses an identifier for "builtins"Victor Stinner2013-11-061-2/+10
| | * | | Issue #18408: Add a new PyFrame_FastToLocalsWithError() function to handleVictor Stinner2013-10-291-2/+5
| | * | | Issue #18520: fix reference leak in _PySys_Init()Victor Stinner2013-10-271-7/+18
| | * | | #18839: merge with 3.3.Ezio Melotti2013-08-261-52/+65
| | |\ \ \
| | | * | | Issue #16400: Add command line option for isolated mode.Christian Heimes2013-08-101-2/+4
| | | * | | Issue #18520: Fix _PySys_Init(), handle PyDict_SetItemString() errorsVictor Stinner2013-07-221-17/+21
| | | * | | Issue #18520: Add a new PyStructSequence_InitType2() function, same thanVictor Stinner2013-07-221-7/+16
| | | * | | Issue #15905: Fix theoretical buffer overflow in handling of sys.argv[0],Christian Heimes2013-07-221-27/+25
| | | |\ \ \
| | | | * | | #13226: update references from ctypes/DLFCN modules to os moduleAndrew Kuchling2013-06-211-2/+2
| | | | * | | Issue #13390: New function :func:`sys.getallocatedblocks()` returns the numbe...Antoine Pitrou2012-12-091-0/+15
| | | | * | | RISCOS support has been removed a long time ago. Remove last remains in sys.f...Christian Heimes2012-11-191-10/+0
| | | | * | | Issue #16166: Add PY_LITTLE_ENDIAN and PY_BIG_ENDIAN macros and unifiedChristian Heimes2012-10-171-15/+8
* | | | | | | Issue #20437: Fixed 21 potential bugs when deleting objects references.Serhiy Storchaka2014-02-091-2/+1
| |_|_|_|_|/ |/| | | | |
* | | | | | Issue #16404: Add checks for return value of PyLong_FromLong() inSerhiy Storchaka2013-12-171-0/+4
| |_|_|_|/ |/| | | |
* | | | | Fixed leak in sys.flags initialization.Serhiy Storchaka2013-12-171-0/+1
|/ / / /
* | | | sysmodule.c: fix sys_update_path(), use Py_ARRAY_LENGTH() to get the size ofVictor Stinner2013-11-151-1/+1
|/ / /
* | | #18839: document that sys.exit() will not accept a non-integer numeric value ...Ezio Melotti2013-08-261-1/+1
|/ /
* | Issue #15905: Fix theoretical buffer overflow in handling of sys.argv[0],Christian Heimes2013-07-221-3/+4
|/
* Issue #15242: Have PyImport_GetMagicTag() return a const char *Brett Cannon2012-07-091-14/+18
* Issue #14785: Add sys._debugmallocstats() to help debug low-level memory allo...David Malcolm2012-06-221-0/+23
* Eric Snow's implementation of PEP 421.Barry Warsaw2012-06-031-2/+70
* Implemented PEP 405 (Python virtual environments).Vinay Sajip2012-05-261-0/+4
* Merge 3.2: Issue #13703 plus some related test suite fixes.Georg Brandl2012-02-211-72/+36
|\
| * Merge branch 3.2Petri Lehtinen2012-02-021-72/+36
| |\
| | * use the static identifier api for looking up special methodsBenjamin Peterson2012-01-221-3/+3
| | * Issue #13226: Update sys.setdlopenflags() docstringVictor Stinner2011-10-311-3/+1
| | * Port SetAttrString/HasAttrString to SetAttrId/GetAttrId.Martin v. Löwis2011-10-141-2/+3
| | * Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-141-4/+4
| | * Use identifier API for PyObject_GetAttrString.Martin v. Löwis2011-10-101-3/+6
| | * Add API for static strings, primarily good for identifiers.Martin v. Löwis2011-10-091-1/+2
| | * Use the new Py_ARRAY_LENGTH macroVictor Stinner2011-09-291-1/+1
| | * #13054: sys.maxunicode is now always 0x10FFFF.Ezio Melotti2011-09-291-2/+2
| | * Issue #11223: Replace threading._info() by sys.thread_infoVictor Stinner2011-04-301-9/+15
| | * Merge 3.2: sys.getfilesystemencoding() raises a RuntimeError ifVictor Stinner2011-03-311-2/+3
| | |\
| | * | Remove traces of division_warning left over from Python 2 (#10998)Éric Araujo2011-03-261-4/+2
| | * | #11515: Merge with 3.2.Ezio Melotti2011-03-151-96/+1
| | |\ \
| | | * | Remove sys.subversion and svn build identification leftovers.Georg Brandl2011-03-061-94/+0
| | | * | Merge build identification to default branch.Georg Brandl2011-03-061-0/+3
| | | |\ \
| | | * | | Issue #8914: fix various warnings from the Clang static analyzer v254.Brett Cannon2011-02-221-2/+1