502 Commits (d27b455bbcedd232ad8490acff46f532a365be49)

Author SHA1 Message Date
Martin v. Löwis b45b315855 Patch #1350409: Port signal handling to VS 2005. 20 years ago
Jeremy Hylton 3e0055f8c6 Merge ast-branch to head 21 years ago
Neal Norwitz 40d3781416 - Fix segfault with invalid coding. 21 years ago
Martin v. Löwis d35edda682 Forward UnicodeDecodeError into SyntaxError for source encoding errors. 21 years ago
Raymond Hettinger d794666048 * Improve code for the empty frozenset singleton: 21 years ago
Michael W. Hudson ba283e2b7f This is my patch: 21 years ago
Anthony Baxter 12b6f6cac7 Move exception finalisation later in the shutdown process - this 21 years ago
Martin v. Löwis 4bf108d74f Patch #802188: better parser error message for non-EOL following line cont. 21 years ago
Anthony Baxter 9ceaa72ebe Patch #975056 - fixes for restartable signals on *BSD. In addition, 22 years ago
Tim Peters 7f468f29f4 SF patch 1044089: New C API function PyEval_ThreadsInitialized(), by Nick 22 years ago
Raymond Hettinger fb09f0e85c Finalize the freelist of list objects. 22 years ago
Martin v. Löwis 336e85f56a Patch #900727: Add Py_InitializeEx to allow embedding without signals. 22 years ago
Martin v. Löwis c2632a5c34 Patch #984714: Properly diagnose E_DECODE errors. 22 years ago
Michael W. Hudson 30ea2f223f This closes patch: 22 years ago
Nicholas Bastin e5662aedef Changed random calls to PyThreadState_Get() to use the macro 22 years ago
Armin Rigo 5d2c68359b Lost reference. 22 years ago
Skip Montanaro 7befb9966e remove support for missing ANSI C header files (limits.h, stddef.h, etc). 22 years ago
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