COMMITS
/ Python/pythonrun.c February 13, 2003
G
- Finally fixed the bug in compile() and exec where a string ending
Guido van Rossum committed
January 24, 2003
January 22, 2003
M
Patch #671459: Invoke import hooks in Py_NewInterpreter.
Martin v. Löwis committed
December 31, 2002
N
Since the *_Init() are private, prefix with _, suggested by Skip
Neal Norwitz committed
December 30, 2002
N
SF #561244, Micro optimizations
Neal Norwitz committed
J
PEP 302 + zipimport:
Just van Rossum committed
December 13, 2002
J
Added missing casts.
Jack Jansen committed
December 11, 2002
M
Constify filenames and scripts. Fixes #651362.
Martin v. Löwis committed
November 17, 2002
N
Remove _Py_ResetReferences. Fixes bug #529750 "Circular reference makes
Neil Schemenauer committed
October 17, 2002
F
If we have a filename and __main__.__file__ hasn't already been set,
Fred Drake committed
October 5, 2002
T
s/_alloca/alloca/g; Windows doesn't need the former, at least not unless
Tim Peters committed
August 15, 2002
S
provide less mysterious error messages when seeing end-of-line in
Skip Montanaro committed
August 4, 2002
M
Patch #534304: Implement phase 1 of PEP 263.
Martin v. Löwis committed
July 9, 2002
T
_Py_AskYesNo(): Removed this function. It was defined only in a
Tim Peters committed
T
Fix SF Bug 564931: compile() traceback must include filename.
Thomas Heller committed
T
The Py_REF_DEBUG/COUNT_ALLOCS/Py_TRACE_REFS macro minefield: added
Tim Peters committed
June 30, 2002
M
Patch #569753: Remove support for WIN16.
Martin v. Löwis committed
April 23, 2002
J
Ignore SIGXFSZ.
Jeremy Hylton committed
April 13, 2002
T
_PyObject_DebugDumpStats: renamed to _PyObject_DebugMallocStats.
Tim Peters committed
April 8, 2002
M
Move Unicode finalization further down in the chain.
Marc-André Lemburg committed
April 1, 2002
N
Get rid of another use of PyArg_Parse()
Neal Norwitz committed
March 22, 2002
N
Disable the parser hacks that enabled the "yield" keyword using a future
Neil Schemenauer committed
March 3, 2002
M
Patch #50002: Display line information for bad \x escapes:
Martin v. Löwis committed
January 12, 2002
M
Include <unistd.h> in Python.h. Fixes #500924.
Martin v. Löwis committed
December 7, 2001
J
Missing DECREFs when exception is raised in sys.excepthook.
Jeremy Hylton committed
December 6, 2001
T
SF bug #488514: -Qnew needs work
Tim Peters committed
November 28, 2001
J
Use PyOS_snprintf instead of sprintf.
Jeremy Hylton committed
November 13, 2001
B
PyOS_getsig(), PyOS_setsig(): The minimal amount of work to avoid the
Barry Warsaw committed
October 12, 2001
G
SF patch #467455 : Enhanced environment variables, by Toby Dickenson.
Guido van Rossum committed
August 31, 2001
G
Add warning mode for classic division, almost exactly as specified in
Guido van Rossum committed
August 17, 2001
M
Patch #445762: Support --disable-unicode
Martin v. Löwis committed
August 16, 2001
G
Oops. Two fixes for SF bug #422004 are not needed. :-)
Guido van Rossum committed
G
Bunchathings:
Guido van Rossum committed
August 13, 2001
B
Py_Initialize(): Apply patch by Jürgen Hermann to call
Barry Warsaw committed
August 10, 2001
J
Refactor future feature handling
Jeremy Hylton committed
August 9, 2001
G
Apply SF patch #424554: check for PYTHONDUMPREFS to be set instead of
Guido van Rossum committed
August 7, 2001
G
- Rename PyType_InitDict() to PyType_Ready().
Guido van Rossum committed
August 2, 2001
T
Merge of descr-branch back into trunk.
Tim Peters committed
July 23, 2001
N
Add -E command line switch (ignore environment variables like PYTHONHOME
Neil Schemenauer committed
July 16, 2001
G
PyRun_StringFlags(): forgot to pass the flags on to
Guido van Rossum committed
T
Ugly. A pile of new xxxFlags() functions, to communicate to the parser
Tim Peters committed
T
future.c: insert a cosmetic space.
Tim Peters committed
T
Part way to allowing "from __future__ import generators" to communicate
Tim Peters committed
June 13, 2001
M
Temporarily disable the message to stderr. Jeremy will know what to do
Marc-André Lemburg committed
March 26, 2001
J
Bug fix: compile() called from a nested-scopes-enable Python was not
Jeremy Hylton committed
March 23, 2001
G
Finishing touch to Ping's changes. This is a patch that Ping sent me
Guido van Rossum committed
F
call_sys_exitfunc(): Remove unused variable f.
Fred Drake committed
K
Allow sys.excepthook and sys.exitfunc to quietly exit with a sys.exit().
Ka-Ping Yee committed
G
Fix memory leak with SyntaxError. (The DECREF was originally hidden
Guido van Rossum committed
K
Add sys.excepthook.
Ka-Ping Yee committed