404 Commits (ecd4e9de5afab6a5d75a6fa7ebfb62804ba69264)

Author SHA1 Message Date
Tim Peters 1d7323e4e7 Py_Finalize(): disabled the second call of cyclic gc, and added extensive 22 years ago
Jack Jansen eddc1449ba Getting rid of all the code inside #ifdef macintosh too. 22 years ago
Jack Jansen fb2765666f Getting rid of support for the ancient Apple MPW compiler. 22 years ago
Martin v. Löwis f56d015a71 Patch #804543: strdup saved locales. Backported to 2.3. 22 years ago
Raymond Hettinger 8ae4689657 Simplify and speedup uses of Py_BuildValue(): 23 years ago
Michael W. Hudson 68debc935b Fix refcounting and cut & paste error (?) in last checkin. 23 years ago
Martin v. Löwis a2c17c5820 Move initialization of sys.std{in,out}.encoding to Py_Initialize. 23 years ago
Mark Hammond 5f4e8ca376 Correct previous patch looking for warnings module: sys.modules, not 23 years ago
Mark Hammond edd07737d7 Fix [ 771097 ] frozen programs fail due to implicit import of "warnings". 23 years ago
Mark Hammond 6cb9029a22 PyGILState cleanup was too early - destructors called via module cleanup may use the API. 23 years ago
Tim Peters cf615b5275 handle_system_exit(): This leaked the current exception info, in 23 years ago
Mark Hammond 8d98d2cb95 New PyGILState_ API - implements pep 311, from patch 684256. 23 years ago
Tim Peters 269b2a6797 _Py_PrintReferences(): Changed to print object address at start of each 23 years ago
Guido van Rossum e13ddc9ec8 - New C API PyGC_Collect(), same as calling gc.collect(). 23 years ago
Guido van Rossum 66ebd91244 A missing piece of the PEP 269 patch: add PyParser_SetError(), a 23 years ago
Tim Peters d08e3824d4 Trimmed trailing whitespace. 23 years ago
Tim Peters 9cf25ce3a0 Py_Finalize(): Reverted recent changes that tried to move the 23 years ago
Guido van Rossum 0fc8f00252 - pythunrun.c, Py_Finalize(): move the call to _Py_PrintReferences() 23 years ago
Guido van Rossum d922fa46ce Move the call to _Py_PrintReferences() a bit further down. This 23 years ago
Neal Norwitz 5c16c7b014 Move declaration of enc to scope where it is used 23 years ago
Gustavo Niemeyer 5ddd4c3f77 Fixed SF bug #663074. The codec system was using global static 23 years ago
Fred Drake 6a9a3292f5 Declare all variables at the start of their scope. 23 years ago
Martin v. Löwis 73d538b9c6 Always initialize Py_FileSystemDefaultEncoding on Unix in Py_Initialize, 23 years ago
Just van Rossum 5bfba3aeb9 Addendum to #683658: 23 years ago
Mark Hammond a43fd0c899 Fix bug 683658 - PyErr_Warn may cause import deadlock. 23 years ago
Guido van Rossum 4b499dd3fb - Finally fixed the bug in compile() and exec where a string ending 23 years ago
Jack Jansen a038270590 MacPython-OS9 has had an abort() function for quite a while now, so there's no reason to stall in an endless loop, just call abort() on a fatal error. 23 years ago
Martin v. Löwis d7ceb222bd Patch #671459: Invoke import hooks in Py_NewInterpreter. 23 years ago
Neal Norwitz b2501f4cd1 Since the *_Init() are private, prefix with _, suggested by Skip 23 years ago
Neal Norwitz c91ed400e0 SF #561244, Micro optimizations 23 years ago
Just van Rossum 52e14d640b PEP 302 + zipimport: 23 years ago
Jack Jansen 72f3b7a5de Added missing casts. 23 years ago
Martin v. Löwis 95292d6caa Constify filenames and scripts. Fixes #651362. 23 years ago
Neil Schemenauer 89350a41b9 Remove _Py_ResetReferences. Fixes bug #529750 "Circular reference makes 23 years ago
Fred Drake 8ed0204bc9 If we have a filename and __main__.__file__ hasn't already been set, 24 years ago
Tim Peters 92e4dd8657 s/_alloca/alloca/g; Windows doesn't need the former, at least not unless 24 years ago
Skip Montanaro 118ec70ea2 provide less mysterious error messages when seeing end-of-line in 24 years ago
Martin v. Löwis 00f1e3f5a5 Patch #534304: Implement phase 1 of PEP 263. 24 years ago
Tim Peters 34b2569327 _Py_AskYesNo(): Removed this function. It was defined only in a 24 years ago
Thomas Heller 6b17abf6c0 Fix SF Bug 564931: compile() traceback must include filename. 24 years ago
Tim Peters 7c321a80f9 The Py_REF_DEBUG/COUNT_ALLOCS/Py_TRACE_REFS macro minefield: added 24 years ago
Martin v. Löwis 6238d2b024 Patch #569753: Remove support for WIN16. 24 years ago
Jeremy Hylton 1b0bf9b761 Ignore SIGXFSZ. 24 years ago
Tim Peters 0e871188e8 _PyObject_DebugDumpStats: renamed to _PyObject_DebugMallocStats. 24 years ago
Marc-André Lemburg 95de5c1631 Move Unicode finalization further down in the chain. 24 years ago
Neal Norwitz 7829335763 Get rid of another use of PyArg_Parse() 24 years ago
Neil Schemenauer c24ea08644 Disable the parser hacks that enabled the "yield" keyword using a future 24 years ago
Martin v. Löwis cfeb3b6ab8 Patch #50002: Display line information for bad \x escapes: 24 years ago
Martin v. Löwis cdc4451222 Include <unistd.h> in Python.h. Fixes #500924. 24 years ago
Jeremy Hylton 0702858d73 Missing DECREFs when exception is raised in sys.excepthook. 24 years ago