| Commit message (Expand) | Author | Age | Files | Lines |
* | _Py_PrintReferences(): Changed to print object address at start of each | Tim Peters | 2003-04-17 | 1 | -2/+9 |
|
|
* | - New C API PyGC_Collect(), same as calling gc.collect(). | Guido van Rossum | 2003-04-17 | 1 | -0/+8 |
|
|
* | A missing piece of the PEP 269 patch: add PyParser_SetError(), a | Guido van Rossum | 2003-04-17 | 1 | -0/+9 |
|
|
* | Trimmed trailing whitespace. | Tim Peters | 2003-04-17 | 1 | -10/+10 |
|
|
* | Py_Finalize(): Reverted recent changes that tried to move the | Tim Peters | 2003-04-17 | 1 | -8/+11 |
|
|
* | - pythunrun.c, Py_Finalize(): move the call to _Py_PrintReferences() | Guido van Rossum | 2003-04-15 | 1 | -8/+8 |
|
|
* | Move the call to _Py_PrintReferences() a bit further down. This | Guido van Rossum | 2003-04-15 | 1 | -7/+12 |
|
|
* | Move declaration of enc to scope where it is used | Neal Norwitz | 2003-04-10 | 1 | -2/+1 |
|
|
* | Fixed SF bug #663074. The codec system was using global static | Gustavo Niemeyer | 2003-03-19 | 1 | -8/+0 |
|
|
* | Declare all variables at the start of their scope. | Fred Drake | 2003-03-05 | 1 | -1/+1 |
|
|
* | Always initialize Py_FileSystemDefaultEncoding on Unix in Py_Initialize, | Martin v. Löwis | 2003-03-05 | 1 | -0/+28 |
|
|
* | Addendum to #683658: | Just van Rossum | 2003-02-25 | 1 | -2/+2 |
|
|
* | Fix bug 683658 - PyErr_Warn may cause import deadlock. | Mark Hammond | 2003-02-19 | 1 | -0/+11 |
|
|
* | - Finally fixed the bug in compile() and exec where a string ending | Guido van Rossum | 2003-02-13 | 1 | -6/+2 |
|
|
* | MacPython-OS9 has had an abort() function for quite a while now, so there's n... | Jack Jansen | 2003-01-24 | 1 | -3/+0 |
|
|
* | Patch #671459: Invoke import hooks in Py_NewInterpreter. | Martin v. Löwis | 2003-01-22 | 1 | -0/+1 |
|
|
* | 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 |
|
|