COMMITS
/ Python/pythonrun.c December 13, 2006
T
Four months of trunk changes (including a few releases...)
Thomas Wouters committed
August 21, 2006
T
Merge current trunk into p3yk. This includes the PyNumber_Index API change,
Thomas Wouters committed
August 11, 2006
T
Merged revisions 46753-51188 via svnmerge from
Thomas Wouters committed
June 8, 2006
T
Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn
Thomas Wouters committed
May 27, 2006
T
Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.
Thomas Wouters committed
April 21, 2006
T
Merge p3yk branch with the trunk up to revision 45595. This breaks a fair
Thomas Wouters committed
March 17, 2006
N
_Py_QnewFlag and INPLACE_DIVIDE are not necessary any longer
Neal Norwitz committed
March 15, 2006
G
Checkpoint. 218 tests are okay; 53 are failing. Done so far:
Guido van Rossum committed
March 7, 2006
G
Address an coverity issue. Coverity was complaining about a line that's fine,
Guido van Rossum committed
March 6, 2006
N
Fix warnings on x86 (32-bit).
Neal Norwitz committed
March 5, 2006
M
Use %Id for size_t-ish things on Win64.
Martin v. Löwis committed
March 4, 2006
N
Use Py_ssize_t for _Py_RefTotal.
Neal Norwitz committed
N
Get rid of run_err_mod(). It was only used in two places.
Neal Norwitz committed
March 2, 2006
B
Fix refleak in PyErr_Display().
Brett Cannon committed
March 1, 2006
M
Reconst parameters that lost their const in the AST merge.
Martin v. Löwis committed
B
PEP 352 implementation. Creates a new base class, BaseException, which has an
Brett Cannon committed
February 28, 2006
T
from __future__ import with_statement addon for 'with', mostly written by
Thomas Wouters committed
February 26, 2006
M
Check whether there are flags.
Martin v. Löwis committed
M
Generate code to recursively copy an AST into
Martin v. Löwis committed
February 15, 2006
M
Merge ssize_t branch.
Martin v. Löwis committed
December 18, 2005
N
Fix Bug #1378022, UTF-8 files with a leading BOM crashed the interpreter.
Neal Norwitz committed
December 17, 2005
N
Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines,
Neal Norwitz committed
November 28, 2005
M
Patch #1350409: Port signal handling to VS 2005.
Martin v. Löwis committed
October 20, 2005
J
Merge ast-branch to head
Jeremy Hylton committed
October 2, 2005
N
- Fix segfault with invalid coding.
Neal Norwitz committed
August 24, 2005
M
Forward UnicodeDecodeError into SyntaxError for source encoding errors.
Martin v. Löwis committed
August 1, 2005
R
* Improve code for the empty frozenset singleton:
Raymond Hettinger committed
May 27, 2005
M
This is my patch:
Michael W. Hudson committed
March 29, 2005
A
Move exception finalisation later in the shutdown process - this
Anthony Baxter committed
March 3, 2005
M
Patch #802188: better parser error message for non-EOL following line cont.
Martin v. Löwis committed
October 13, 2004
A
Patch #975056 - fixes for restartable signals on *BSD. In addition,
Anthony Baxter committed
October 11, 2004
T
SF patch 1044089: New C API function PyEval_ThreadsInitialized(), by Nick
Tim Peters committed
October 7, 2004
R
Finalize the freelist of list objects.
Raymond Hettinger committed
August 19, 2004
M
Patch #900727: Add Py_InitializeEx to allow embedding without signals.
Martin v. Löwis committed
July 21, 2004
M
Patch #984714: Properly diagnose E_DECODE errors.
Martin v. Löwis committed
July 7, 2004
M
This closes patch:
Michael W. Hudson committed
March 24, 2004
N
Changed random calls to PyThreadState_Get() to use the macro
Nicholas Bastin committed
March 22, 2004
A
Lost reference.
Armin Rigo committed
February 10, 2004
S
remove support for missing ANSI C header files (limits.h, stddef.h, etc).
Skip Montanaro committed
December 1, 2003
T
Py_Finalize(): disabled the second call of cyclic gc, and added extensive
Tim Peters committed
November 20, 2003
J
Getting rid of all the code inside #ifdef macintosh too.
Jack Jansen committed
November 19, 2003
J
Getting rid of support for the ancient Apple MPW compiler.
Jack Jansen committed
November 13, 2003
M
Patch #804543: strdup saved locales. Backported to 2.3.
Martin v. Löwis committed
October 12, 2003
R
Simplify and speedup uses of Py_BuildValue():
Raymond Hettinger committed
August 11, 2003
M
Fix refcounting and cut & paste error (?) in last checkin.
Michael W. Hudson committed
August 9, 2003
M
Move initialization of sys.std{in,out}.encoding to Py_Initialize.
Martin v. Löwis committed
July 16, 2003
M
Correct previous patch looking for warnings module: sys.modules, not
Mark Hammond committed
July 15, 2003
M
Fix [ 771097 ] frozen programs fail due to implicit import of "warnings".
Mark Hammond committed
April 22, 2003
M
PyGILState cleanup was too early - destructors called via module cleanup may use the API.
Mark Hammond committed