| Commit message (Expand) | Author | Age | Files | Lines |
* | Py_Finalize(): disabled the second call of cyclic gc, and added extensive | Tim Peters | 2003-12-01 | 1 | -2/+27 |
|
|
* | Getting rid of all the code inside #ifdef macintosh too. | Jack Jansen | 2003-11-20 | 1 | -14/+0 |
|
|
* | Getting rid of support for the ancient Apple MPW compiler. | Jack Jansen | 2003-11-19 | 1 | -12/+0 |
|
|
* | Patch #804543: strdup saved locales. Backported to 2.3. | Martin v. Löwis | 2003-11-13 | 1 | -1/+2 |
|
|
* | Simplify and speedup uses of Py_BuildValue(): | Raymond Hettinger | 2003-10-12 | 1 | -1/+1 |
|
|
* | Fix refcounting and cut & paste error (?) in last checkin. | Michael W. Hudson | 2003-08-11 | 1 | -3/+1 |
|
|
* | Move initialization of sys.std{in,out}.encoding to Py_Initialize. | Martin v. Löwis | 2003-08-09 | 1 | -15/+51 |
|
|
* | Correct previous patch looking for warnings module: sys.modules, not | Mark Hammond | 2003-07-16 | 1 | -1/+1 |
|
|
* | Fix [ 771097 ] frozen programs fail due to implicit import of "warnings". | Mark Hammond | 2003-07-15 | 1 | -5/+36 |
|
|
* | PyGILState cleanup was too early - destructors called via module cleanup may ... | Mark Hammond | 2003-04-22 | 1 | -5/+5 |
|
|
* | handle_system_exit(): This leaked the current exception info, in | Tim Peters | 2003-04-19 | 1 | -4/+16 |
|
|
* | New PyGILState_ API - implements pep 311, from patch 684256. | Mark Hammond | 2003-04-19 | 1 | -0/+15 |
|
|
* | _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 |
|
|