COMMITS
/ Python/sysmodule.c October 20, 2005
J
Merge ast-branch to head
Jeremy Hylton committed
October 3, 2005
N
SF bug #887946, segfault if redirecting directory
Neal Norwitz committed
September 15, 2005
G
patch [ 1119423 ] python -c readlink()s and stat()s '-c'
Georg Brandl committed
January 27, 2005
M
Partially revert #1074011; don't try to fflush stdin.
Martin v. Löwis committed
January 23, 2005
M
Flush std{in,out,err} before closing it. Fixes #1074011.
Martin v. Löwis committed
August 12, 2004
M
This is my patch:
Michael W. Hudson committed
June 13, 2004
N
Remove compiler warning
Neal Norwitz committed
June 8, 2004
M
Patch #510695: Add TSC profiling for the VM.
Martin v. Löwis committed
March 24, 2004
N
Changed random calls to PyThreadState_Get() to use the macro
Nicholas Bastin committed
N
Enable the profiling of C functions (builtins and extensions)
Nicholas Bastin committed
August 9, 2003
M
Move initialization of sys.std{in,out}.encoding to Py_Initialize.
Martin v. Löwis committed
July 6, 2003
T
New function sys.getcheckinterval(), to complement setcheckinterval().
Tim Peters committed
May 10, 2003
M
Patch #612627: Add encoding attribute to file objects, and determine
Martin v. Löwis committed
May 3, 2003
M
Patch #708495: Port more stuff to OpenVMS.
Martin v. Löwis committed
April 9, 2003
G
- New function sys.call_tracing() allows pdb to debug code
Guido van Rossum committed
March 5, 2003
M
Always initialize Py_FileSystemDefaultEncoding on Unix in Py_Initialize,
Martin v. Löwis committed
March 1, 2003
G
- New function sys.exc_clear() clears the current exception. This is
Guido van Rossum committed
February 19, 2003
G
- sys.path[0] (the directory from which the script is loaded) is now
Guido van Rossum committed
February 5, 2003
J
Small function call optimization and special build option for call stats.
Jeremy Hylton committed
January 8, 2003
T
Patch #664376: sys.path[0] should contain absolute pathname.
Thomas Heller committed
October 8, 2002
M
Add os.path.supports_unicode_filenames for all platforms,
Mark Hammond committed
September 3, 2002
S
replace thread state objects' ticker and checkinterval fields with two
Skip Montanaro committed
S
expose PYTHON_API_VERSION macro as sys.api_version. Closes patch # 601456.
Skip Montanaro committed
July 7, 2002
T
Rearranged and added comments to object.h, to clarify many things
Tim Peters committed
June 30, 2002
M
Patch #569753: Remove support for WIN16.
Martin v. Löwis committed
June 26, 2002
J
Got rid of an extraneous semicolon.
Jack Jansen committed
June 20, 2002
F
Fix the docstring for sys.getrefcount().
Fred Drake committed
June 9, 2002
M
Patch #505375: Make doc strings optional.
Martin v. Löwis committed
March 27, 2002
N
Change sys_exit to use METH_VARARGS.
Neal Norwitz committed
March 23, 2002
N
Fix wording of sys.exit docstring. Close SF bug 534113.
Neil Schemenauer committed
March 3, 2002
N
SF #506611, fix sys.setprofile(), sys.settrace() core dumps
Neal Norwitz committed
January 29, 2002
N
Fix spelling mistakes. Bugfix candidates.
Neal Norwitz committed
January 12, 2002
M
Include <unistd.h> in Python.h. Fixes #500924.
Martin v. Löwis committed
December 3, 2001
T
mysnprintf.c: Massive rewrite of PyOS_snprintf and PyOS_vsnprintf, to
Tim Peters committed
December 2, 2001
T
mywrite(): The test for trouble in PyOS_vsnprintf was wrong on both
Tim Peters committed
November 28, 2001
J
Use PyOS_vsnprintf() and check its return value.
Jeremy Hylton committed
November 9, 2001
M
Include sys_getdefaultencoding in #ifdef Py_USING_UNICODE. Fixes #479571.
Martin v. Löwis committed
October 24, 2001
F
Convert getrefcount() to METH_O, and sys_excepthook() to use
Fred Drake committed
October 4, 2001
F
Rationalize the events passed to the profiler (no changes for the tracer).
Fred Drake committed
August 17, 2001
M
Patch #445762: Support --disable-unicode
Martin v. Löwis committed
August 16, 2001
M
Patch #427190: Implement and use METH_NOARGS and METH_O.
Martin v. Löwis committed
July 23, 2001
M
Patch number #422106 by Greg Ball, to fix segmentation
Moshe Zadka committed
July 18, 2001
M
Patch #412229: Add functions sys.getdlopenflags and sys.setdlopenflags.
Martin v. Löwis committed
June 27, 2001
F
Revise the interface to the profiling and tracing support for the
Fred Drake committed
M
Encode surrogates in UTF-8 even for a wide Py_UNICODE.
Martin v. Löwis committed
June 16, 2001
F
Instead of initializing & interning the strings passed to the profile
Fred Drake committed
April 10, 2001
G
Updated version of RISCOS support. SF patch 411213 by Dietmar Schwertberger
Guido van Rossum committed
March 23, 2001
K
Add sys.excepthook.
Ka-Ping Yee committed
January 13, 2001
G
Neil discovered a bad DECREF on warnoptions, that caused repeated
Guido van Rossum committed
January 11, 2001
G
stdout is sometimes a macro; use "outf" instead.
Greg Stein committed