aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/sysmodule.c
Commit message (Expand)AuthorAge
* Merge ast-branch to headJeremy Hylton2005-10-20
* SF bug #887946, segfault if redirecting directoryNeal Norwitz2005-10-03
* patch [ 1119423 ] python -c readlink()s and stat()s '-c'Georg Brandl2005-09-15
* Partially revert #1074011; don't try to fflush stdin.Martin v. Löwis2005-01-27
* Flush std{in,out,err} before closing it. Fixes #1074011.Martin v. Löwis2005-01-23
* This is my patch:Michael W. Hudson2004-08-12
* Remove compiler warningNeal Norwitz2004-06-13
* Patch #510695: Add TSC profiling for the VM.Martin v. Löwis2004-06-08
* Changed random calls to PyThreadState_Get() to use the macroNicholas Bastin2004-03-24
* Enable the profiling of C functions (builtins and extensions)Nicholas Bastin2004-03-24
* Move initialization of sys.std{in,out}.encoding to Py_Initialize.Martin v. Löwis2003-08-09
* New function sys.getcheckinterval(), to complement setcheckinterval().Tim Peters2003-07-06
* Patch #612627: Add encoding attribute to file objects, and determineMartin v. Löwis2003-05-10
* Patch #708495: Port more stuff to OpenVMS.Martin v. Löwis2003-05-03
* - New function sys.call_tracing() allows pdb to debug codeGuido van Rossum2003-04-09
* Always initialize Py_FileSystemDefaultEncoding on Unix in Py_Initialize,Martin v. Löwis2003-03-05
* - New function sys.exc_clear() clears the current exception. This isGuido van Rossum2003-03-01
* - sys.path[0] (the directory from which the script is loaded) is nowGuido van Rossum2003-02-19
* Small function call optimization and special build option for call stats.Jeremy Hylton2003-02-05
* Patch #664376: sys.path[0] should contain absolute pathname.Thomas Heller2003-01-08
* Add os.path.supports_unicode_filenames for all platforms,Mark Hammond2002-10-08
* replace thread state objects' ticker and checkinterval fields with twoSkip Montanaro2002-09-03
* expose PYTHON_API_VERSION macro as sys.api_version. Closes patch # 601456.Skip Montanaro2002-09-03
* Rearranged and added comments to object.h, to clarify many thingsTim Peters2002-07-07
* Patch #569753: Remove support for WIN16.Martin v. Löwis2002-06-30
* Got rid of an extraneous semicolon.Jack Jansen2002-06-26
* Fix the docstring for sys.getrefcount().Fred Drake2002-06-20
* Patch #505375: Make doc strings optional.Martin v. Löwis2002-06-09
* Change sys_exit to use METH_VARARGS.Neal Norwitz2002-03-27
* Fix wording of sys.exit docstring. Close SF bug 534113.Neil Schemenauer2002-03-23
* SF #506611, fix sys.setprofile(), sys.settrace() core dumpsNeal Norwitz2002-03-03
* Fix spelling mistakes. Bugfix candidates.Neal Norwitz2002-01-29
* Include <unistd.h> in Python.h. Fixes #500924.Martin v. Löwis2002-01-12
* mysnprintf.c: Massive rewrite of PyOS_snprintf and PyOS_vsnprintf, toTim Peters2001-12-03
* mywrite(): The test for trouble in PyOS_vsnprintf was wrong on bothTim Peters2001-12-02
* Use PyOS_vsnprintf() and check its return value.Jeremy Hylton2001-11-28
* Include sys_getdefaultencoding in #ifdef Py_USING_UNICODE. Fixes #479571.Martin v. Löwis2001-11-09
* Convert getrefcount() to METH_O, and sys_excepthook() to useFred Drake2001-10-24
* Rationalize the events passed to the profiler (no changes for the tracer).Fred Drake2001-10-04
* Patch #445762: Support --disable-unicodeMartin v. Löwis2001-08-17
* Patch #427190: Implement and use METH_NOARGS and METH_O.Martin v. Löwis2001-08-16
* Patch number #422106 by Greg Ball, to fix segmentationMoshe Zadka2001-07-23
* Patch #412229: Add functions sys.getdlopenflags and sys.setdlopenflags.Martin v. Löwis2001-07-18
* Revise the interface to the profiling and tracing support for theFred Drake2001-06-27
* Encode surrogates in UTF-8 even for a wide Py_UNICODE.Martin v. Löwis2001-06-27
* Instead of initializing & interning the strings passed to the profileFred Drake2001-06-16
* Updated version of RISCOS support. SF patch 411213 by Dietmar SchwertbergerGuido van Rossum2001-04-10
* Add sys.excepthook.Ka-Ping Yee2001-03-23
* Neil discovered a bad DECREF on warnoptions, that caused repeatedGuido van Rossum2001-01-13
* stdout is sometimes a macro; use "outf" instead.Greg Stein2001-01-11