summaryrefslogtreecommitdiffstats
path: root/Python/sysmodule.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Remove compiler warningNeal Norwitz2004-06-131-1/+1
* Patch #510695: Add TSC profiling for the VM.Martin v. Löwis2004-06-081-0/+30
* Changed random calls to PyThreadState_Get() to use the macroNicholas Bastin2004-03-241-8/+8
* Enable the profiling of C functions (builtins and extensions)Nicholas Bastin2004-03-241-3/+4
* Move initialization of sys.std{in,out}.encoding to Py_Initialize.Martin v. Löwis2003-08-091-18/+0
* New function sys.getcheckinterval(), to complement setcheckinterval().Tim Peters2003-07-061-0/+12
* Patch #612627: Add encoding attribute to file objects, and determineMartin v. Löwis2003-05-101-0/+43
* Patch #708495: Port more stuff to OpenVMS.Martin v. Löwis2003-05-031-0/+19
* - New function sys.call_tracing() allows pdb to debug codeGuido van Rossum2003-04-091-0/+19
* Always initialize Py_FileSystemDefaultEncoding on Unix in Py_Initialize,Martin v. Löwis2003-03-051-0/+20
* - New function sys.exc_clear() clears the current exception. This isGuido van Rossum2003-03-011-4/+37
* - sys.path[0] (the directory from which the script is loaded) is nowGuido van Rossum2003-02-191-2/+10
* Small function call optimization and special build option for call stats.Jeremy Hylton2003-02-051-2/+26
* Patch #664376: sys.path[0] should contain absolute pathname.Thomas Heller2003-01-081-0/+12
* Add os.path.supports_unicode_filenames for all platforms,Mark Hammond2002-10-081-0/+37
* replace thread state objects' ticker and checkinterval fields with twoSkip Montanaro2002-09-031-2/+1
* expose PYTHON_API_VERSION macro as sys.api_version. Closes patch # 601456.Skip Montanaro2002-09-031-0/+3
* Rearranged and added comments to object.h, to clarify many thingsTim Peters2002-07-071-2/+3
* Patch #569753: Remove support for WIN16.Martin v. Löwis2002-06-301-2/+0
* Got rid of an extraneous semicolon.Jack Jansen2002-06-261-1/+1
* Fix the docstring for sys.getrefcount().Fred Drake2002-06-201-2/+3
* Patch #505375: Make doc strings optional.Martin v. Löwis2002-06-091-30/+53
* Change sys_exit to use METH_VARARGS.Neal Norwitz2002-03-271-2/+5