| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #22193: Added private function _PySys_GetSizeOf() needed to implement | Serhiy Storchaka | 2014-08-14 | 1 | -33/+42 |
|
|
* | Issue #20437: Fixed 43 potential bugs when deleting objects references. | Serhiy Storchaka | 2014-02-09 | 1 | -2/+1 |
|
|
* | Issue #16404: Add checks for return value of PyInt_FromLong() in | Serhiy Storchaka | 2013-12-17 | 1 | -0/+4 |
|
|
* | Fixed leak in sys.flags initialization. | Serhiy Storchaka | 2013-12-17 | 1 | -0/+1 |
|
|
* | #18839: document that sys.exit() will not accept a non-integer numeric value ... | Ezio Melotti | 2013-08-26 | 1 | -1/+1 |
|
|
* | merge 2.6 with hash randomization fix | Benjamin Peterson | 2012-02-21 | 1 | -2/+4 |
|\ |
|
| * | - Issue #13703: oCERT-2011-003: add -R command-line option and PYTHONHASHSEED | Barry Warsaw | 2012-02-21 | 1 | -2/+4 |
|
|
| * | Merged revisions 81398 via svnmerge from | Antoine Pitrou | 2010-05-21 | 1 | -2/+8 |
|
|
| * | Recorded merge of revisions 81029 via svnmerge from | Antoine Pitrou | 2010-05-09 | 1 | -895/+895 |
|
|
| * | Revert r78621. This was not a critical fix and we're in rc mode. | Barry Warsaw | 2010-03-03 | 1 | -1/+1 |
|
|
| * | Merged revisions 78620 via svnmerge from | Florent Xicluna | 2010-03-03 | 1 | -1/+1 |
|
|
| * | Merged revisions 77892 via svnmerge from | Victor Stinner | 2010-01-31 | 1 | -1/+1 |
|
|
| * | Merged revisions 72871-72872 via svnmerge from | Benjamin Peterson | 2009-05-23 | 1 | -1/+1 |
|
|
| * | Merged revisions 68521,68527,68534-68536,68540,68547,68552,68563,68570,68572,... | Georg Brandl | 2009-01-14 | 1 | -3/+12 |
|
|
* | | Document absoluteness of sys.executable | Petri Lehtinen | 2012-02-02 | 1 | -1/+1 |
|
|
* | | sys.checkinterval() now refreshes the current countdown ticker. | Raymond Hettinger | 2011-06-02 | 1 | -0/+1 |
|
|
* | | remove this dead subversion code | Benjamin Peterson | 2011-03-25 | 1 | -62/+5 |
|
|
* | | #11515: fix several typos. Patch by Piotr Kasprzyk. | Ezio Melotti | 2011-03-15 | 1 | -1/+1 |
|
|
* | | Port build identification from default branch. | Georg Brandl | 2011-03-06 | 1 | -0/+3 |
|
|
* | | Issue #5753: A new C API function, :cfunc:`PySys_SetArgvEx`, allows | Antoine Pitrou | 2010-05-21 | 1 | -2/+8 |
|
|
* | | Untabify C files. Will watch buildbots. | Antoine Pitrou | 2010-05-09 | 1 | -969/+969 |
|
|
* | | Revert a nonexistent docstring typo, r42805. | Florent Xicluna | 2010-03-03 | 1 | -1/+1 |
|
|
* | | Issue #7819: Check sys.call_tracing() arguments types. | Victor Stinner | 2010-01-31 | 1 | -1/+1 |
|
|
* | | Issue #7766: Change sys.getwindowsversion() return value to a named tuple and... | Eric Smith | 2010-01-27 | 1 | -13/+62 |
|
|
* | | Issue #7117 (backport py3k float repr) continued: | Mark Dickinson | 2009-10-24 | 1 | -0/+10 |
|
|
* | | Update docstrings for sys.getdlopenflags() and sys.setdlopenflags(). | Alexandre Vassalotti | 2009-06-29 | 1 | -10/+12 |
|
|
* | | handle errors from _PyObject_LookupSpecial when __get__ fails | Benjamin Peterson | 2009-05-25 | 1 | -4/+6 |
|
|
* | | support building with subversion 1.7 #6094 | Benjamin Peterson | 2009-05-23 | 1 | -1/+1 |
|
|
* | | convert some more special methods to use _PyObject_LookupSpecial | Benjamin Peterson | 2009-05-09 | 1 | -12/+7 |
|
|
* | | Issue #4258: Use 30-bit digits for Python longs, on 64-bit platforms. | Mark Dickinson | 2009-03-20 | 1 | -0/+4 |
|
|
* | | Implement issue #4285, convert sys.version_info to a named | Eric Smith | 2009-02-06 | 1 | -20/+79 |
|
|
* | | Issue #4915: Port sysmodule to Windows CE. | Martin v. Löwis | 2009-01-12 | 1 | -3/+12 |
|/ |
|
* | Added garbage collector overhead and optional default return value to | Robert Schuppenies | 2008-07-10 | 1 | -13/+46 |
|
|
* | Fixed Issue3122 and extended sys.getsizeof tests for built-in types. | Robert Schuppenies | 2008-07-10 | 1 | -11/+10 |
|
|
* | - Issue #2862: Make int and float freelist management consistent with other | Gregory P. Smith | 2008-07-06 | 1 | -20/+0 |
|
|
* | This reverts r63675 based on the discussion in this thread: | Gregory P. Smith | 2008-06-09 | 1 | -19/+19 |
|
|
* | Some style nits. Also clarify in the docstrings what __sizeof__ does. | Georg Brandl | 2008-06-01 | 1 | -2/+2 |
|
|
* | Issue #2898: Added sys.getsizeof() to retrieve size of objects in bytes. | Robert Schuppenies | 2008-06-01 | 1 | -0/+41 |
|
|
* | New environment variable PYTHONIOENCODING. | Martin v. Löwis | 2008-06-01 | 1 | -20/+0 |
|
|
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -19/+19 |
|
|
* | Patch #2488: Add sys.maxsize. | Martin v. Löwis | 2008-05-20 | 1 | -0/+3 |
|
|
* | Fix sys.flags to properly expose bytes_warning. | Brett Cannon | 2008-05-08 | 1 | -2/+2 |
|
|
* | Implemented PEP 370 | Christian Heimes | 2008-05-06 | 1 | -5/+5 |
|
|
* | A little reformating of Py3k warnings | Benjamin Peterson | 2008-04-27 | 1 | -1/+1 |
|
|
* | Use PyErr_WarnPy3k throughout | Benjamin Peterson | 2008-04-27 | 1 | -4/+2 |
|
|
* | Fix indentation in sysmodule.c | Benjamin Peterson | 2008-04-18 | 1 | -4/+4 |
|
|
* | Fix a bug in PySys_HasWarnOption() where it was not properly checking the | Brett Cannon | 2008-04-13 | 1 | -1/+1 |
|
|
* | Re-implement the 'warnings' module in C. This allows for usage of the | Brett Cannon | 2008-04-12 | 1 | -0/+8 |
|
|
* | Make Py3k warnings consistent w.r.t. punctuation; also respect the | Georg Brandl | 2008-03-25 | 1 | -2/+2 |
|
|
* | Added quick hack for bzr | Christian Heimes | 2008-03-24 | 1 | -2/+2 |
|
|