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