1. 3d05b1a initmain(): Nailed a memory leak. bimod must be DECREF'd! by Barry Warsaw · 25 years ago
  2. 7890203 bltin_exc[]: EnvironmentError is not a "leaf exception", so set it's by Barry Warsaw · 25 years ago
  3. fa77e09 builtin_map(): A better fix for the previous leak plug (remember by Barry Warsaw · 25 years ago
  4. 541563e Implement -OO; "unsafe" optimization that removes docstrings. by Guido van Rossum · 25 years ago
  5. 2133287 builtin_map(): Nailed memory leak. PyList_Append() borrows a by Barry Warsaw · 25 years ago
  6. f988e68 builtin_complex(): Nailed memory leak. This one's in the instance by Barry Warsaw · 25 years ago
  7. 3879333 PyImport_ReloadModule(): Nailed a small memory leak. In the by Barry Warsaw · 25 years ago
  8. 54ecc3d Patches by William Lewis for Nextstep descendants. by Guido van Rossum · 25 years ago
  9. c80baa3 err_input(): Nailed a small memory leak. If the error is E_INTR, the by Barry Warsaw · 25 years ago
  10. 54892c4 _PySys_Init(): Nailed small memory leak. The stringobject created for by Barry Warsaw · 25 years ago
  11. 3dbba6e Change rare occurrences of #if HAVE_LONG_LONG to #ifdef. by Guido van Rossum · 25 years ago
  12. a71b5f4 Jim Ahlstrom patch: the module doc string is too long for 16-bit VC by Guido van Rossum · 26 years ago
  13. e23cde2 Avoid overflow if possible in calculations for range(); report by Guido van Rossum · 26 years ago
  14. 2c1f6be Hack for Windows so that if (1) the exit status is nonzero and (2) we by Guido van Rossum · 26 years ago
  15. df69365 Ty Sarna writes: by Guido van Rossum · 26 years ago
  16. cad3d47 Chris Herborth writes: by Guido van Rossum · 26 years ago
  17. e0d7dae Add sys.hexversion, which is an integer encoding the version in hexadecimal. by Guido van Rossum · 26 years ago
  18. 6e0a349 Use PY_VERSION instead of PATCHLEVEL. by Guido van Rossum · 26 years ago
  19. 47ae028 Call PyInitFrozenExtensions() as requested by Mark Hammond (his patch). by Guido van Rossum · 26 years ago
  20. c38e7d4 Oops, forgot a pair of {}'s. (Greg Couch) by Guido van Rossum · 26 years ago
  21. d341500 Add 'N' format character to Py_BuildValue -- like 'O' but doesn't INCREF. by Guido van Rossum · 26 years ago
  22. 6058eb4 Improve comment for PyImport_Import() as suggested by Bill Tutt. by Guido van Rossum · 26 years ago
  23. 65d5b57 Thanks to Chris Herborth, the thread primitives now have proper Py* by Guido van Rossum · 26 years ago
  24. 885553e Use PyThreadState_GET() macro. by Guido van Rossum · 26 years ago
  25. 18bc7c2 Make current_tstate a global, _PyThreadState_Current. This is to by Guido van Rossum · 26 years ago
  26. 1924a06 Chris H. writes: by Guido van Rossum · 26 years ago
  27. 0e1d0e9 Patch by Chris Herborth: by Guido van Rossum · 26 years ago
  28. 2edcf0d Move the prototype for dump_counts() to before where it is used. by Guido van Rossum · 26 years ago
  29. 46e9705 Remove prototypes for PyOS_strto[u]l -- Chris Herborth. by Guido van Rossum · 26 years ago
  30. ca90605 Add more SET_LINENO instructions in long argument lists by Guido van Rossum · 26 years ago
  31. 926f7b6 Adding thread support for BeOS by Chris Herborth. by Guido van Rossum · 26 years ago
  32. cf183ac Use PyInt_AS_LONG macro instead of explicit inlining. by Guido van Rossum · 26 years ago
  33. f261526 Need to add default decl of DL_IMPORT, for mymalloc.h by Guido van Rossum · 26 years ago
  34. 344864f Added new builtin standard exception: NotImplementedError (its C by Barry Warsaw · 26 years ago
  35. df12a59 Fix cosmetic bug in delattr docstring discovered by JvR. by Guido van Rossum · 26 years ago
  36. 014518f Whoops! One the "redundant" initializations removed by Vladimir in by Guido van Rossum · 26 years ago
  37. 50cd348 Remove some redundant initializations -- patch by Vladimir Marangozov. by Guido van Rossum · 26 years ago
  38. 6646856 Jim Fulton writes: by Guido van Rossum · 26 years ago
  39. e0e5982 When errno is zero, avoid calling strerror() and use "Error" for the message. by Guido van Rossum · 26 years ago
  40. 2f3667a Replace fprintf(stderr, ...) with PySys_WriteStderr(...). by Guido van Rossum · 26 years ago
  41. 8442af3 Patches for mywrite() by Marc Lemburg: save/restore the error state by Guido van Rossum · 26 years ago
  42. b317f8a Implement new format character 't#'. This is like s#, accepting an by Guido van Rossum · 26 years ago
  43. 5bd893b The previous checkin contained an experiment of Greg Stein's that wasn't by Guido van Rossum · 26 years ago
  44. 0f8b30f On Win32, use by Guido van Rossum · 26 years ago
  45. 2a57004 Changes to deal with the sigcheck+intrcheck vs. signalmodule controversy. by Guido van Rossum · 26 years ago
  46. d076c73 Changes to support other object types besides strings by Guido van Rossum · 26 years ago
  47. 9e46e56 BSDI specific patches, inspired by Nigel Head and otto@mail.olympus.net. by Guido van Rossum · 26 years ago
  48. 562f5b1 Support PYTHONOPTIMIZE variable; by Marc Lemburg. by Guido van Rossum · 26 years ago
  49. dfede31 Eh, better error message for the previous change. It now says by Guido van Rossum · 26 years ago
  50. 29d38cd Treat def f(a, b=1, c): ... as an error (missing default for c) by Guido van Rossum · 26 years ago
  51. e364b7d Renamed thread.h to pythread.h. by Guido van Rossum · 26 years ago
  52. 49b5606 Renamed thread.h to pythread.h. by Guido van Rossum · 26 years ago
  53. 2dcfc96 On second though, NEXITFUNCS should be defined here and not in by Guido van Rossum · 26 years ago
  54. 968f8cb builtin_apply(): Second argument type check is relaxed to allow any sequence. by Barry Warsaw · 26 years ago
  55. 566373e While scalling sys.modules, skip entries that don't have string keys, by Guido van Rossum · 26 years ago
  56. 65f15d4 In FreeBSD when using ELF, an underscore is needed in front of the by Guido van Rossum · 26 years ago
  57. 93d2754 Remove redundant definition of NEXITFUNCS. (Reported by Jeff Rush.) by Guido van Rossum · 26 years ago
  58. 98b6246 Several changes that Python carry on in the face of errors in the by Barry Warsaw · 26 years ago
  59. a0f0a33 Mac-specific mod to enable aliases on import paths. by Guido van Rossum · 26 years ago
  60. d21744a Apparently on AIX when using gcc you need to call pthread_init() by Guido van Rossum · 26 years ago
  61. a74d0e4 Correct typo in #ifdef: PY_THREAD_D4, should be PY_PTHREAD_D4. by Guido van Rossum · 26 years ago
  62. 746340d Should no longer surround PyOS_Readline() call with by Guido van Rossum · 26 years ago
  63. 44ee479 Add a 'volatile' to the declaration of threadid in get_thread_ident(). by Guido van Rossum · 26 years ago
  64. 53195c1 Don't release the interpreter lock around PyParser_ParseFile(). by Guido van Rossum · 26 years ago
  65. afd3dae __file__ used to be always set to the .pyc (or .pyo) file, even if by Guido van Rossum · 26 years ago
  66. 90f827c Comment out the print statement about underflow. (This only seems to by Guido van Rossum · 26 years ago
  67. 2d1ad39 Add the type of the object to the error message about calling a non-function. by Guido van Rossum · 26 years ago
  68. d0dc5b0 Restructure the file so that it is never empty. No longer needs by Guido van Rossum · 26 years ago
  69. 3293b07 Patch by Mark Hammond to support 64-bit ints on MS platforms. by Guido van Rossum · 26 years ago
  70. ab076fd Ted Horst writes in psa-members@python.org: by Guido van Rossum · 26 years ago
  71. 0ba3536 Add DebugBreak() call to Py_FatalError() for Mark Hammond (only on by Guido van Rossum · 26 years ago
  72. 0506a43 Patch by Just van Rossum that changes how we search for submodules of by Guido van Rossum · 26 years ago
  73. c4099e6 # Fix strange type (methonname instead of methodname). by Guido van Rossum · 26 years ago
  74. 9c241ba Added declarations for Mac code resource modules (Jack Jansen). by Guido van Rossum · 26 years ago
  75. 0f84a34 Added handling for Mac code resource modules (Jack Jansen). by Guido van Rossum · 26 years ago
  76. 40552d0 Gack. The module doc string is too long for VC++ 5.0. by Guido van Rossum · 26 years ago
  77. d807879 Make getversion.o dependent on ../Include/patchlevel.h as well. by Fred Drake · 26 years ago
  78. 1a8791e Changes for BeOS, QNX and long long, by Chris Herborth. by Guido van Rossum · 26 years ago
  79. 5053efc In BUILD_LIST, use PyList_SET_ITEM() instead of PyList_SetItem(); and by Guido van Rossum · 26 years ago
  80. 97d9515 PyErr_SetFromErrnoWithFilename(): New function which supports setting by Barry Warsaw · 26 years ago
  81. d086a1a Added support for two new standard errors: EnvironmentError and by Barry Warsaw · 26 years ago
  82. fa4ac71 Small changes to map() and filter(): by Guido van Rossum · 26 years ago
  83. fa00e95 # In case BINARY_SUBSCR, use proper PyList_GET* macros instead of inlining. by Guido van Rossum · 26 years ago
  84. 7859f87 Marc-Andre Lemburg's patch to support instance methods with other by Guido van Rossum · 26 years ago
  85. bb71ab6 Reindented some OS/2 and hpux code that looked ugly or at least inconsistent. by Guido van Rossum · 26 years ago
  86. 233f4b5 Two error messages still used the old name of the functio mkvalue() -- by Guido van Rossum · 26 years ago
  87. e32d153 Sigh. The hack to enable special treatment for errno on SGI machines by Guido van Rossum · 26 years ago
  88. b68cd42 Fix two smal memory leaks discovered by Vadim Chugunov. by Guido van Rossum · 26 years ago
  89. 8ea9f4d Fix a stupid little bug: len() of an unsized returns -1 and leaves an by Guido van Rossum · 26 years ago
  90. 950ff29 Experimental feature: add default argument to getattr(). by Guido van Rossum · 26 years ago
  91. a5e1b00 Windows-specific hack to make sure that when LoadLibrary() is called, by Guido van Rossum · 26 years ago
  92. c3bc31e Added doc strings. Maybe the doc string for the module itself is a bit by Guido van Rossum · 26 years ago
  93. f9d9c6c Added doc strings. by Guido van Rossum · 26 years ago
  94. d9b5208 In raw_input(prompt), make sure that str(prompt) really a string by Guido van Rossum · 26 years ago
  95. 323bf5e Ignore Windows case check for ALL CAPS 8.3 files by Guido van Rossum · 26 years ago
  96. a45cb45 When unmarshalling, add test for negative lengths on strings, tuples by Guido van Rossum · 26 years ago
  97. 9396673 Remove a few unused locals (I love VC++ for this!). by Guido van Rossum · 26 years ago
  98. 7e33c6e Moved cmp_member() to abstract.c, as PySequence_Contains() [with by Guido van Rossum · 26 years ago
  99. 09df08a A bunch of functions are now properly implemented in abstract.c, and by Guido van Rossum · 26 years ago
  100. adf0e43 Trivial little change: when setting a member to an object, hold the by Guido van Rossum · 26 years ago