summaryrefslogtreecommitdiffstats
path: root/Python/sysmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #22193: Added private function _PySys_GetSizeOf() needed to implementSerhiy Storchaka2014-08-141-33/+42
* Issue #20437: Fixed 43 potential bugs when deleting objects references.Serhiy Storchaka2014-02-091-2/+1
* Issue #16404: Add checks for return value of PyInt_FromLong() inSerhiy Storchaka2013-12-171-0/+4
* Fixed leak in sys.flags initialization.Serhiy Storchaka2013-12-171-0/+1
* #18839: document that sys.exit() will not accept a non-integer numeric value ...Ezio Melotti2013-08-261-1/+1
* merge 2.6 with hash randomization fixBenjamin Peterson2012-02-211-2/+4
|\
| * - Issue #13703: oCERT-2011-003: add -R command-line option and PYTHONHASHSEEDBarry Warsaw2012-02-211-2/+4
| * Merged revisions 81398 via svnmerge fromAntoine Pitrou2010-05-211-2/+8
| * Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-895/+895
| * Revert r78621. This was not a critical fix and we're in rc mode.Barry Warsaw2010-03-031-1/+1
| * Merged revisions 78620 via svnmerge fromFlorent Xicluna2010-03-031-1/+1
| * Merged revisions 77892 via svnmerge fromVictor Stinner2010-01-311-1/+1
| * Merged revisions 72871-72872 via svnmerge fromBenjamin Peterson2009-05-231-1/+1
| * Merged revisions 68521,68527,68534-68536,68540,68547,68552,68563,68570,68572,...Georg Brandl2009-01-141-3/+12
* | Document absoluteness of sys.executablePetri Lehtinen2012-02-021-1/+1
* | sys.checkinterval() now refreshes the current countdown ticker.Raymond Hettinger2011-06-021-0/+1
* | remove this dead subversion codeBenjamin Peterson2011-03-251-62/+5
* | #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-151-1/+1
* | Port build identification from default branch.Georg Brandl2011-03-061-0/+3
* | Issue #5753: A new C API function, :cfunc:`PySys_SetArgvEx`, allowsAntoine Pitrou2010-05-211-2/+8
* | Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-969/+969
* | Revert a nonexistent docstring typo, r42805.Florent Xicluna2010-03-031-1/+1
* | Issue #7819: Check sys.call_tracing() arguments types.Victor Stinner2010-01-311-1/+1
* | Issue #7766: Change sys.getwindowsversion() return value to a named tuple and...Eric Smith2010-01-271-13/+62
* | Issue #7117 (backport py3k float repr) continued:Mark Dickinson2009-10-241-0/+10
* | Update docstrings for sys.getdlopenflags() and sys.setdlopenflags().Alexandre Vassalotti2009-06-291-10/+12
* | handle errors from _PyObject_LookupSpecial when __get__ failsBenjamin Peterson2009-05-251-4/+6
* | support building with subversion 1.7 #6094Benjamin Peterson2009-05-231-1/+1
* | convert some more special methods to use _PyObject_LookupSpecialBenjamin Peterson2009-05-091-12/+7
* | Issue #4258: Use 30-bit digits for Python longs, on 64-bit platforms.Mark Dickinson2009-03-201-0/+4
* | Implement issue #4285, convert sys.version_info to a namedEric Smith2009-02-061-20/+79
* | Issue #4915: Port sysmodule to Windows CE.Martin v. Löwis2009-01-121-3/+12
|/
* Added garbage collector overhead and optional default return value toRobert Schuppenies2008-07-101-13/+46
* Fixed Issue3122 and extended sys.getsizeof tests for built-in types.Robert Schuppenies2008-07-101-11/+10
* - Issue #2862: Make int and float freelist management consistent with otherGregory P. Smith2008-07-061-20/+0
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-19/+19
* Some style nits. Also clarify in the docstrings what __sizeof__ does.Georg Brandl2008-06-011-2/+2
* Issue #2898: Added sys.getsizeof() to retrieve size of objects in bytes.Robert Schuppenies2008-06-011-0/+41
* New environment variable PYTHONIOENCODING.Martin v. Löwis2008-06-011-20/+0
* Renamed PyString to PyBytesChristian Heimes2008-05-261-19/+19
* Patch #2488: Add sys.maxsize.Martin v. Löwis2008-05-201-0/+3
* Fix sys.flags to properly expose bytes_warning.Brett Cannon2008-05-081-2/+2
* Implemented PEP 370Christian Heimes2008-05-061-5/+5
* A little reformating of Py3k warningsBenjamin Peterson2008-04-271-1/+1
* Use PyErr_WarnPy3k throughoutBenjamin Peterson2008-04-271-4/+2
* Fix indentation in sysmodule.cBenjamin Peterson2008-04-181-4/+4
* Fix a bug in PySys_HasWarnOption() where it was not properly checking theBrett Cannon2008-04-131-1/+1
* Re-implement the 'warnings' module in C. This allows for usage of theBrett Cannon2008-04-121-0/+8
* Make Py3k warnings consistent w.r.t. punctuation; also respect theGeorg Brandl2008-03-251-2/+2
* Added quick hack for bzrChristian Heimes2008-03-241-2/+2