1. 43713e5 Massive patch by Skip Montanaro to add ":name" to as many by Guido van Rossum · 24 years ago
  2. 2194b16 Allow using long integers as slice indexes by Andrew M. Kuchling · 24 years ago
  3. 145c26e Remove comment that Guido agree's doesn't make sense: by Fred Drake · 24 years ago
  4. 584b16a Mark pointed out a buglet in his patch: i < _sys_nerr isn't strong by Guido van Rossum · 24 years ago
  5. 795e189 Patch by Mark Hammond: by Guido van Rossum · 24 years ago
  6. 65a75b0 Changes by Mark Hammond related to the new WindowsError exception. by Guido van Rossum · 24 years ago
  7. e817acd Patch by Jack Jansen: by Guido van Rossum · 24 years ago
  8. bffd683 The rest of the changes by Trent Mick and Dale Nagata for warning-free by Guido van Rossum · 25 years ago
  9. a400d8a Fix a bug in exec_statement() noted incidentally by Tim Peters in by Guido van Rossum · 25 years ago
  10. 7b91212 Adjusted apply() docstring based on comments from Gerrit Holl by Fred Drake · 25 years ago
  11. 96a8fb7 Cleanup patches from Greg Stein: by Guido van Rossum · 25 years ago
  12. 96b5ee8 Vladimir Marangozov: by Guido van Rossum · 25 years ago
  13. 9528886 For Windows, need to add #include <windows.h>. by Guido van Rossum · 25 years ago
  14. db3ec1b Support for selecting the correct dynload_<platform>.c file. by Guido van Rossum · 25 years ago
  15. ed1170e In _PyImport_Init(), dynamically construct the table of legal suffixes by Guido van Rossum · 25 years ago
  16. 9f65081 Some rearrangements for the importdl.c restructuring. by Guido van Rossum · 25 years ago
  17. 6ea9092 Moved most of the platform-specific code to dynload_<platform>.c files. by Guido van Rossum · 25 years ago
  18. 22a1d36 The old platform-specific contents of importdl.c, broken down into one by Guido van Rossum · 25 years ago
  19. 72badf5 The cleanup code in com-init() at label fail_0000 should remove by Guido van Rossum · 25 years ago
  20. 001b9be Patch by Vladimir Marangozov, inspired by a bug report from Gary by Guido van Rossum · 25 years ago
  21. ba98a42 Change the last PyErr_Format %s format to %.400s. by Guido van Rossum · 25 years ago
  22. 25da5be Fix PR117. The error message is "keywords must be strings". Perhaps by Guido van Rossum · 25 years ago
  23. 226ae6c Mainlining the string_methods branch. See branch revision log by Barry Warsaw · 25 years ago
  24. be20336 In PySys_GetObject(), it's possible that tstate->interp->sysdict is by Guido van Rossum · 25 years ago
  25. 3aca653 Tim Peters fixed PR#75: very long lines cause incorrect tracebacks. by Guido van Rossum · 25 years ago
  26. 2174dcb Tim Peters writes: by Guido van Rossum · 25 years ago
  27. 2adac0a Tim Peters discovered a bug in the Python-supplied getopt(): by Guido van Rossum · 25 years ago
  28. f620263 call_trace(): A fix for PR#73, if an exception occurred in the by Barry Warsaw · 25 years ago
  29. 933c91e Vladimir Marangozov fixes an AIX-specific problem, writing: by Guido van Rossum · 25 years ago
  30. 3d58744 Fixed order of parameters in slice() docstring. The Library Reference by Fred Drake · 25 years ago
  31. 7c85ab8 Marc-Andre Lemburg discovered that the switch from .pyc to .pyo files, by Guido van Rossum · 25 years ago
  32. 8746082 Patch by Tim Peters: by Guido van Rossum · 25 years ago
  33. 1d5ad90 CRITICAL PATCH! by Guido van Rossum · 25 years ago
  34. 7f85186 # Darn! Local variable l declared but not used in abstract_issubclass(). by Guido van Rossum · 25 years ago
  35. 668213d Patch by Jim Fulton (code style tweaked a bit) to support by Guido van Rossum · 25 years ago
  36. eda232f Allow longer strings (up to 80 chars each) for version, build, compiler info. by Guido van Rossum · 25 years ago
  37. 743007d Patch by Christian Tismer for Win32, to use FormatMessage() instead of by Guido van Rossum · 25 years ago
  38. 495894e While I can't really test this thoroughly, Pat Knight and the Solaris by Guido van Rossum · 25 years ago
  39. b738d26 Win/CE thread support by Mark Hammond. by Guido van Rossum · 25 years ago
  40. b6987b1 Alas, get rid of the Win specific hack to ask the user to press Return by Guido van Rossum · 25 years ago
  41. 2571cc8 Changes by Mark Hammond for Windows CE. Mostly of the form by Guido van Rossum · 25 years ago
  42. 99fb7c7 Remove unused variable from complex_from_string() code. by Guido van Rossum · 25 years ago
  43. 1195023 Patch by Nick and Stephanie Lockwood to implement complex() with a string by Guido van Rossum · 25 years ago
  44. 0daf022 New builtin buffer() creates a derived read-only buffer from any by Guido van Rossum · 25 years ago
  45. 701f25e Rob Riggs wrote: by Guido van Rossum · 25 years ago
  46. eb894eb Always test for an error return (usually NULL or -1) without setting by Guido van Rossum · 25 years ago
  47. 72b715d (initerrors): Make sure that the exception tuples ("base-classes" when by Barry Warsaw · 25 years ago
  48. 124eff0 Patch by Tim Peters to improve the range checks for range() and by Guido van Rossum · 25 years ago
  49. 66368cc Patch by Tommy Burnette to accept an arbitrary sequence when "(...)" by Guido van Rossum · 25 years ago
  50. 3d05b1a initmain(): Nailed a memory leak. bimod must be DECREF'd! by Barry Warsaw · 26 years ago
  51. 7890203 bltin_exc[]: EnvironmentError is not a "leaf exception", so set it's by Barry Warsaw · 26 years ago
  52. fa77e09 builtin_map(): A better fix for the previous leak plug (remember by Barry Warsaw · 26 years ago
  53. 541563e Implement -OO; "unsafe" optimization that removes docstrings. by Guido van Rossum · 26 years ago
  54. 2133287 builtin_map(): Nailed memory leak. PyList_Append() borrows a by Barry Warsaw · 26 years ago
  55. f988e68 builtin_complex(): Nailed memory leak. This one's in the instance by Barry Warsaw · 26 years ago
  56. 3879333 PyImport_ReloadModule(): Nailed a small memory leak. In the by Barry Warsaw · 26 years ago
  57. 54ecc3d Patches by William Lewis for Nextstep descendants. by Guido van Rossum · 26 years ago
  58. c80baa3 err_input(): Nailed a small memory leak. If the error is E_INTR, the by Barry Warsaw · 26 years ago
  59. 54892c4 _PySys_Init(): Nailed small memory leak. The stringobject created for by Barry Warsaw · 26 years ago
  60. 3dbba6e Change rare occurrences of #if HAVE_LONG_LONG to #ifdef. by Guido van Rossum · 26 years ago
  61. a71b5f4 Jim Ahlstrom patch: the module doc string is too long for 16-bit VC by Guido van Rossum · 26 years ago
  62. e23cde2 Avoid overflow if possible in calculations for range(); report by Guido van Rossum · 26 years ago
  63. 2c1f6be Hack for Windows so that if (1) the exit status is nonzero and (2) we by Guido van Rossum · 26 years ago
  64. df69365 Ty Sarna writes: by Guido van Rossum · 26 years ago
  65. cad3d47 Chris Herborth writes: by Guido van Rossum · 26 years ago
  66. e0d7dae Add sys.hexversion, which is an integer encoding the version in hexadecimal. by Guido van Rossum · 26 years ago
  67. 6e0a349 Use PY_VERSION instead of PATCHLEVEL. by Guido van Rossum · 26 years ago
  68. 47ae028 Call PyInitFrozenExtensions() as requested by Mark Hammond (his patch). by Guido van Rossum · 26 years ago
  69. c38e7d4 Oops, forgot a pair of {}'s. (Greg Couch) by Guido van Rossum · 26 years ago
  70. d341500 Add 'N' format character to Py_BuildValue -- like 'O' but doesn't INCREF. by Guido van Rossum · 26 years ago
  71. 6058eb4 Improve comment for PyImport_Import() as suggested by Bill Tutt. by Guido van Rossum · 26 years ago
  72. 65d5b57 Thanks to Chris Herborth, the thread primitives now have proper Py* by Guido van Rossum · 26 years ago
  73. 885553e Use PyThreadState_GET() macro. by Guido van Rossum · 26 years ago
  74. 18bc7c2 Make current_tstate a global, _PyThreadState_Current. This is to by Guido van Rossum · 26 years ago
  75. 1924a06 Chris H. writes: by Guido van Rossum · 26 years ago
  76. 0e1d0e9 Patch by Chris Herborth: by Guido van Rossum · 26 years ago
  77. 2edcf0d Move the prototype for dump_counts() to before where it is used. by Guido van Rossum · 26 years ago
  78. 46e9705 Remove prototypes for PyOS_strto[u]l -- Chris Herborth. by Guido van Rossum · 26 years ago
  79. ca90605 Add more SET_LINENO instructions in long argument lists by Guido van Rossum · 26 years ago
  80. 926f7b6 Adding thread support for BeOS by Chris Herborth. by Guido van Rossum · 26 years ago
  81. cf183ac Use PyInt_AS_LONG macro instead of explicit inlining. by Guido van Rossum · 26 years ago
  82. f261526 Need to add default decl of DL_IMPORT, for mymalloc.h by Guido van Rossum · 26 years ago
  83. 344864f Added new builtin standard exception: NotImplementedError (its C by Barry Warsaw · 26 years ago
  84. df12a59 Fix cosmetic bug in delattr docstring discovered by JvR. by Guido van Rossum · 26 years ago
  85. 014518f Whoops! One the "redundant" initializations removed by Vladimir in by Guido van Rossum · 26 years ago
  86. 50cd348 Remove some redundant initializations -- patch by Vladimir Marangozov. by Guido van Rossum · 26 years ago
  87. 6646856 Jim Fulton writes: by Guido van Rossum · 26 years ago
  88. e0e5982 When errno is zero, avoid calling strerror() and use "Error" for the message. by Guido van Rossum · 26 years ago
  89. 2f3667a Replace fprintf(stderr, ...) with PySys_WriteStderr(...). by Guido van Rossum · 26 years ago
  90. 8442af3 Patches for mywrite() by Marc Lemburg: save/restore the error state by Guido van Rossum · 26 years ago
  91. b317f8a Implement new format character 't#'. This is like s#, accepting an by Guido van Rossum · 26 years ago
  92. 5bd893b The previous checkin contained an experiment of Greg Stein's that wasn't by Guido van Rossum · 26 years ago
  93. 0f8b30f On Win32, use by Guido van Rossum · 26 years ago
  94. 2a57004 Changes to deal with the sigcheck+intrcheck vs. signalmodule controversy. by Guido van Rossum · 26 years ago
  95. d076c73 Changes to support other object types besides strings by Guido van Rossum · 26 years ago
  96. 9e46e56 BSDI specific patches, inspired by Nigel Head and otto@mail.olympus.net. by Guido van Rossum · 26 years ago
  97. 562f5b1 Support PYTHONOPTIMIZE variable; by Marc Lemburg. by Guido van Rossum · 26 years ago
  98. dfede31 Eh, better error message for the previous change. It now says by Guido van Rossum · 26 years ago
  99. 29d38cd Treat def f(a, b=1, c): ... as an error (missing default for c) by Guido van Rossum · 26 years ago
  100. e364b7d Renamed thread.h to pythread.h. by Guido van Rossum · 26 years ago