| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #16136: Remove VMS support and VMS-related code | Christian Heimes | 2013-12-21 | 1 | -19/+0 |
* | Fix the C definition of the sys._debugmallocstats() function: the function has | Victor Stinner | 2013-12-19 | 1 | -1/+1 |
* | Issue #16404: Add checks for return value of PyLong_FromLong() in | Serhiy Storchaka | 2013-12-17 | 1 | -0/+4 |
|\ |
|
| * | Issue #16404: Add checks for return value of PyLong_FromLong() in | Serhiy Storchaka | 2013-12-17 | 1 | -0/+4 |
* | | Fixed leak in sys.flags initialization. | Serhiy Storchaka | 2013-12-17 | 1 | -0/+1 |
|\ \
| |/ |
|
| * | Fixed leak in sys.flags initialization. | Serhiy Storchaka | 2013-12-17 | 1 | -0/+1 |
* | | Issue #14432: Remove the thread state field from the frame structure. Fix a | Victor Stinner | 2013-12-13 | 1 | -5/+3 |
* | | ssue #19183: Implement PEP 456 'secure and interchangeable hash algorithm'. | Christian Heimes | 2013-11-20 | 1 | -2/+18 |
* | | (Merge 3.3) sysmodule.c: fix sys_update_path(), use Py_ARRAY_LENGTH() to get | Victor Stinner | 2013-11-15 | 1 | -73/+136 |
|\ \
| |/
|/| |
|
| * | Issue #19512, #19515: remove shared identifiers, move identifiers where they | Victor Stinner | 2013-11-07 | 1 | -14/+17 |
| * | Issue #19512: add some common identifiers to only create common strings once, | Victor Stinner | 2013-11-06 | 1 | -11/+11 |
| * | Issue #19512: Add _PySys_GetObjectId() and _PySys_SetObjectId() functions | Victor Stinner | 2013-11-06 | 1 | -0/+25 |
| * | Issue #19512: sys_displayhook() now uses an identifier for "builtins" | Victor Stinner | 2013-11-06 | 1 | -2/+10 |
| * | Issue #18408: Add a new PyFrame_FastToLocalsWithError() function to handle | Victor Stinner | 2013-10-29 | 1 | -2/+5 |
| * | Issue #18520: fix reference leak in _PySys_Init() | Victor Stinner | 2013-10-27 | 1 | -7/+18 |
| * | #18839: merge with 3.3. | Ezio Melotti | 2013-08-26 | 1 | -52/+65 |
| |\ |
|
| | * | Issue #16400: Add command line option for isolated mode. | Christian Heimes | 2013-08-10 | 1 | -2/+4 |
| | * | Issue #18520: Fix _PySys_Init(), handle PyDict_SetItemString() errors | Victor Stinner | 2013-07-22 | 1 | -17/+21 |
| | * | Issue #18520: Add a new PyStructSequence_InitType2() function, same than | Victor Stinner | 2013-07-22 | 1 | -7/+16 |
| | * | Issue #15905: Fix theoretical buffer overflow in handling of sys.argv[0], | Christian Heimes | 2013-07-22 | 1 | -27/+25 |
| | |\ |
|
| | | * | #13226: update references from ctypes/DLFCN modules to os module | Andrew Kuchling | 2013-06-21 | 1 | -2/+2 |
| | | * | Issue #13390: New function :func:`sys.getallocatedblocks()` returns the numbe... | Antoine Pitrou | 2012-12-09 | 1 | -0/+15 |
| | | * | RISCOS support has been removed a long time ago. Remove last remains in sys.f... | Christian Heimes | 2012-11-19 | 1 | -10/+0 |
| | | * | Issue #16166: Add PY_LITTLE_ENDIAN and PY_BIG_ENDIAN macros and unified | Christian Heimes | 2012-10-17 | 1 | -15/+8 |
* | | | | sysmodule.c: fix sys_update_path(), use Py_ARRAY_LENGTH() to get the size of | Victor Stinner | 2013-11-15 | 1 | -1/+1 |
|/ / / |
|
* | | | #18839: document that sys.exit() will not accept a non-integer numeric value ... | Ezio Melotti | 2013-08-26 | 1 | -1/+1 |
|/ / |
|
* | | Issue #15905: Fix theoretical buffer overflow in handling of sys.argv[0], | Christian Heimes | 2013-07-22 | 1 | -3/+4 |
|/ |
|
* | Issue #15242: Have PyImport_GetMagicTag() return a const char * | Brett Cannon | 2012-07-09 | 1 | -14/+18 |
* | Issue #14785: Add sys._debugmallocstats() to help debug low-level memory allo... | David Malcolm | 2012-06-22 | 1 | -0/+23 |
* | Eric Snow's implementation of PEP 421. | Barry Warsaw | 2012-06-03 | 1 | -2/+70 |
* | Implemented PEP 405 (Python virtual environments). | Vinay Sajip | 2012-05-26 | 1 | -0/+4 |
* | Merge 3.2: Issue #13703 plus some related test suite fixes. | Georg Brandl | 2012-02-21 | 1 | -72/+36 |
|\ |
|
| * | Merge branch 3.2 | Petri Lehtinen | 2012-02-02 | 1 | -72/+36 |
| |\ |
|
| | * | use the static identifier api for looking up special methods | Benjamin Peterson | 2012-01-22 | 1 | -3/+3 |
| | * | Issue #13226: Update sys.setdlopenflags() docstring | Victor Stinner | 2011-10-31 | 1 | -3/+1 |
| | * | Port SetAttrString/HasAttrString to SetAttrId/GetAttrId. | Martin v. Löwis | 2011-10-14 | 1 | -2/+3 |
| | * | Rename _Py_identifier to _Py_IDENTIFIER. | Martin v. Löwis | 2011-10-14 | 1 | -4/+4 |
| | * | Use identifier API for PyObject_GetAttrString. | Martin v. Löwis | 2011-10-10 | 1 | -3/+6 |
| | * | Add API for static strings, primarily good for identifiers. | Martin v. Löwis | 2011-10-09 | 1 | -1/+2 |
| | * | Use the new Py_ARRAY_LENGTH macro | Victor Stinner | 2011-09-29 | 1 | -1/+1 |
| | * | #13054: sys.maxunicode is now always 0x10FFFF. | Ezio Melotti | 2011-09-29 | 1 | -2/+2 |
| | * | Issue #11223: Replace threading._info() by sys.thread_info | Victor Stinner | 2011-04-30 | 1 | -9/+15 |
| | * | Merge 3.2: sys.getfilesystemencoding() raises a RuntimeError if | Victor Stinner | 2011-03-31 | 1 | -2/+3 |
| | |\ |
|
| | * | | Remove traces of division_warning left over from Python 2 (#10998) | Éric Araujo | 2011-03-26 | 1 | -4/+2 |
| | * | | #11515: Merge with 3.2. | Ezio Melotti | 2011-03-15 | 1 | -96/+1 |
| | |\ \ |
|
| | | * | | Remove sys.subversion and svn build identification leftovers. | Georg Brandl | 2011-03-06 | 1 | -94/+0 |
| | | * | | Merge build identification to default branch. | Georg Brandl | 2011-03-06 | 1 | -0/+3 |
| | | |\ \ |
|
| | | * | | | Issue #8914: fix various warnings from the Clang static analyzer v254. | Brett Cannon | 2011-02-22 | 1 | -2/+1 |
* | | | | | | Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic... | Georg Brandl | 2012-02-20 | 1 | -192/+503 |
|\ \ \ \ \ \
| |/ / / / / |
|
| * | | | | | Document absoluteness of sys.executable | Petri Lehtinen | 2012-02-02 | 1 | -1/+1 |