4890 Commits (00a0fc1144d928515ff8abd0de7bb6ad072fcbdb)

Author SHA1 Message Date
Barry Warsaw 3d05b1a0ae initmain(): Nailed a memory leak. bimod must be DECREF'd! 27 years ago
Barry Warsaw 7890203f49 bltin_exc[]: EnvironmentError is not a "leaf exception", so set it's 27 years ago
Barry Warsaw fa77e09dd0 builtin_map(): A better fix for the previous leak plug (remember 27 years ago
Guido van Rossum 541563ec7e Implement -OO; "unsafe" optimization that removes docstrings. 27 years ago
Barry Warsaw 2133287c3e builtin_map(): Nailed memory leak. PyList_Append() borrows a 27 years ago
Barry Warsaw f988e687a1 builtin_complex(): Nailed memory leak. This one's in the instance 27 years ago
Barry Warsaw 3879333b9e PyImport_ReloadModule(): Nailed a small memory leak. In the 27 years ago
Guido van Rossum 54ecc3d24f Patches by William Lewis for Nextstep descendants. 27 years ago
Barry Warsaw c80baa3365 err_input(): Nailed a small memory leak. If the error is E_INTR, the 27 years ago
Barry Warsaw 54892c4b2c _PySys_Init(): Nailed small memory leak. The stringobject created for 27 years ago
Guido van Rossum 3dbba6ec3a Change rare occurrences of #if HAVE_LONG_LONG to #ifdef. 27 years ago
Guido van Rossum a71b5f4e1d Jim Ahlstrom patch: the module doc string is too long for 16-bit VC 27 years ago
Guido van Rossum e23cde2f8d Avoid overflow if possible in calculations for range(); report 27 years ago
Guido van Rossum 2c1f6be38e Hack for Windows so that if (1) the exit status is nonzero and (2) we 27 years ago
Guido van Rossum df69365f5f Ty Sarna writes: 27 years ago
Guido van Rossum cad3d47f1e Chris Herborth writes: 27 years ago
Guido van Rossum e0d7dae3b8 Add sys.hexversion, which is an integer encoding the version in hexadecimal. 27 years ago
Guido van Rossum 6e0a3499ab Use PY_VERSION instead of PATCHLEVEL. 27 years ago
Guido van Rossum 47ae028071 Call PyInitFrozenExtensions() as requested by Mark Hammond (his patch). 27 years ago
Guido van Rossum c38e7d4c4b Oops, forgot a pair of {}'s. (Greg Couch) 27 years ago
Guido van Rossum d341500d8f Add 'N' format character to Py_BuildValue -- like 'O' but doesn't INCREF. 27 years ago
Guido van Rossum 6058eb49ee Improve comment for PyImport_Import() as suggested by Bill Tutt. 27 years ago
Guido van Rossum 65d5b5763c Thanks to Chris Herborth, the thread primitives now have proper Py* 27 years ago
Guido van Rossum 885553e8d3 Use PyThreadState_GET() macro. 27 years ago
Guido van Rossum 18bc7c2276 Make current_tstate a global, _PyThreadState_Current. This is to 27 years ago
Guido van Rossum 1924a0677d Chris H. writes: 27 years ago
Guido van Rossum 0e1d0e95ea Patch by Chris Herborth: 27 years ago
Guido van Rossum 2edcf0d71c Move the prototype for dump_counts() to before where it is used. 27 years ago
Guido van Rossum 46e9705eca Remove prototypes for PyOS_strto[u]l -- Chris Herborth. 27 years ago
Guido van Rossum ca90605678 Add more SET_LINENO instructions in long argument lists 27 years ago
Guido van Rossum 926f7b6615 Adding thread support for BeOS by Chris Herborth. 27 years ago
Guido van Rossum cf183acf15 Use PyInt_AS_LONG macro instead of explicit inlining. 27 years ago
Guido van Rossum f261526423 Need to add default decl of DL_IMPORT, for mymalloc.h 27 years ago
Barry Warsaw 344864fcfb Added new builtin standard exception: NotImplementedError (its C 27 years ago
Guido van Rossum df12a59305 Fix cosmetic bug in delattr docstring discovered by JvR. 27 years ago
Guido van Rossum 014518f66c Whoops! One the "redundant" initializations removed by Vladimir in 27 years ago
Guido van Rossum 50cd34888b Remove some redundant initializations -- patch by Vladimir Marangozov. 28 years ago
Guido van Rossum 66468568df Jim Fulton writes: 28 years ago
Guido van Rossum e0e59829e0 When errno is zero, avoid calling strerror() and use "Error" for the 28 years ago
Guido van Rossum 2f3667a7b9 Replace fprintf(stderr, ...) with PySys_WriteStderr(...). 28 years ago
Guido van Rossum 8442af35fe Patches for mywrite() by Marc Lemburg: save/restore the error state 28 years ago
Guido van Rossum b317f8aa0d Implement new format character 't#'. This is like s#, accepting an 28 years ago
Guido van Rossum 5bd893b1ea The previous checkin contained an experiment of Greg Stein's that wasn't 28 years ago
Guido van Rossum 0f8b30f8ce On Win32, use 28 years ago
Guido van Rossum 2a570049ac Changes to deal with the sigcheck+intrcheck vs. signalmodule controversy. 28 years ago
Guido van Rossum d076c73cc8 Changes to support other object types besides strings 28 years ago
Guido van Rossum 9e46e56264 BSDI specific patches, inspired by Nigel Head and otto@mail.olympus.net. 28 years ago
Guido van Rossum 562f5b1480 Support PYTHONOPTIMIZE variable; by Marc Lemburg. 28 years ago
Guido van Rossum dfede31c7f Eh, better error message for the previous change. It now says 28 years ago
Guido van Rossum 29d38cd088 Treat def f(a, b=1, c): ... as an error (missing default for c) 28 years ago