summaryrefslogtreecommitdiffstats
path: root/Python/sysmodule.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Added quick hack for bzrChristian Heimes2008-03-241-1/+8
* #2358: add py3k warning to sys.exc_clear().Georg Brandl2008-03-211-1/+9
* Patch #1953Christian Heimes2008-02-041-13/+34
* The previous change was causing a segfault after multiple calls to Py_Initial...Christian Heimes2008-01-301-3/+3
* Fixed some references leaks in sys.Christian Heimes2008-01-301-21/+17
* Added clear cache methods to clear the internal type lookup cache for ref lea...Christian Heimes2008-01-271-0/+13
* #1648: add sys.gettrace() and sys.getprofile().Georg Brandl2008-01-201-0/+42
* Typo fixesAndrew M. Kuchling2008-01-151-2/+2
* Applied patch #1816: sys.flags patchChristian Heimes2008-01-141-3/+94
* Patch #602345 by Neal Norwitz and me: add -B option and PYTHONDONTWRITEBYTECO...Georg Brandl2008-01-071-0/+3
* Feature #1534Christian Heimes2007-12-011-0/+2
* Expose Py_Py3kWarningFlag as sys.py3kwarning as discussed in #1504Christian Heimes2007-11-271-0/+2
* SF #1701207, Fix bogus assertion (and test it!)Neal Norwitz2007-04-161-2/+2
* SF patch #1630975: Fix crash when replacing sys.stdout in sitecustomizeThomas Wouters2007-01-231-3/+3
* Add some asserts. In sysmodule, I think these were to try to silenceNeal Norwitz2006-10-281-0/+4
* Forward-port of r52136,52138: a review of overflow-detecting code.Armin Rigo2006-10-041-1/+1
* Handle allocation failures gracefully. Found with failmalloc.Neal Norwitz2006-07-211-39/+34
* After approval from Anthony, merge the tim-current_framesTim Peters2006-07-101-0/+17
* _PySys_Init(): It's rarely a good idea to size a buffer to theTim Peters2006-06-061-1/+1
* Add 3 more bytes to a buffer to cover constants in string and null byte on to...Brett Cannon2006-06-051-1/+1
* Make use of METH_O and METH_NOARGS where possible.Georg Brandl2006-05-291-2/+2
* C++ compiler cleanup: extern "C" a couple declarations, cast int to size_tSkip Montanaro2006-04-181-1/+9
* Ignore the references to the dummy objects used as deleted keysArmin Rigo2006-04-121-3/+2
* Bug #1421664: Set sys.stderr.encodingMartin v. Löwis2006-04-031-0/+5
* Try to be a bit more consistent on all platforms:Neal Norwitz2006-03-091-1/+4
* Change int to Py_ssize_t in several places.Martin v. Löwis2006-03-071-1/+1
* Use Py_ssize_t for _Py_RefTotal.Neal Norwitz2006-03-041-1/+1
* Fix minor docstring typo.Brett Cannon2006-03-021-1/+1
* Use Py_ssize_t to count theMartin v. Löwis2006-02-161-1/+2
* Merge ssize_t branch.Martin v. Löwis2006-02-151-1/+1
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* svnversion_init(): Use standard layout for function defn.Tim Peters2006-01-061-1/+2
* Trimmed trailing whitespace.Tim Peters2006-01-061-20/+20
* Drop sys.build_number. Add sys.subversion.Martin v. Löwis2006-01-051-2/+84
* Expose Subversion revision number (calculated via "svnversion .") to Python.Barry Warsaw2005-12-181-0/+3
* Merge ast-branch to headJeremy Hylton2005-10-201-1/+1
* SF bug #887946, segfault if redirecting directoryNeal Norwitz2005-10-031-0/+9
* patch [ 1119423 ] python -c readlink()s and stat()s '-c'Georg Brandl2005-09-151-3/+3
* Partially revert #1074011; don't try to fflush stdin.Martin v. Löwis2005-01-271-1/+10
* Flush std{in,out,err} before closing it. Fixes #1074011.Martin v. Löwis2005-01-231-3/+10
* This is my patch:Michael W. Hudson2004-08-121-1/+1