1. bbf10b5 add missing DECREF (thanks, Barry) by Jeremy Hylton · 24 years ago
  2. 3faa52e Allow 'continue' inside 'try' clause SF patch 102989 by Thomas Wouters by Jeremy Hylton · 24 years ago
  3. 483638c Undo recent change that banned using import to bind a global, as per by Jeremy Hylton · 24 years ago
  4. 1ff31f9 SF bug #130532: newest CVS won't build on AIX. by Tim Peters · 24 years ago
  5. eab156f Enforce two illegal import statements that were outlawed in the by Jeremy Hylton · 24 years ago
  6. 2b724da Remove f_closure slot of frameobject and use f_localsplus instead. by Jeremy Hylton · 24 years ago
  7. 2fdfadf plug leak detected by Barry by Jeremy Hylton · 24 years ago
  8. d9b9ac8 It's unclear whether PyMarshal_XXX() are part of the public or private API. by Tim Peters · 24 years ago
  9. 547397c SF bug http://sourceforge.net/bugs/?func=detailbug&bug_id=130242&group_id=5470 by Tim Peters · 24 years ago
  10. a0ac40c Better error message when non-dictionary received for **kwarg by Jeremy Hylton · 24 years ago
  11. 64949cb PEP 227 implementation by Jeremy Hylton · 24 years ago
  12. a6ebc48 Fix bug reported by Ka-Ping Yee: The compiler botched parsing function by Jeremy Hylton · 24 years ago
  13. 9667ed2 Leak pluggin', bug fixin' and better documentin'. Specifically, by Barry Warsaw · 24 years ago
  14. 2975786 Add a new API, PyThreadState_DeleteCurrent() that combines by Guido van Rossum · 24 years ago
  15. 5f827f4 Visit the initial test element of the listmaker for a list by Jeremy Hylton · 24 years ago
  16. 1113cfc prevent symtable_params() from dereferencing off the end of the by Jeremy Hylton · 24 years ago
  17. 174e801 com_init(): My entry into the smallest patch possible category. by Barry Warsaw · 24 years ago
  18. 384fd10 Bug #128475: mimetools.encode (sometimes) fails when called from a thread. by Tim Peters · 24 years ago
  19. 7f3e4ad SF patch #103336: Missing cast. by Tim Peters · 24 years ago
  20. c7050d9 Use #if TARGET_API_MAC_CARBON to determine carbon/classic macos, not #ifdef. by Jack Jansen · 24 years ago
  21. 6f77667 Backed out the unistr() builtin. by Marc-André Lemburg · 24 years ago
  22. c862cf4 clearer error messages for apply() and "no locals" by Jeremy Hylton · 24 years ago
  23. e36f778 This patch introduces an extra pass to the compiler that generates a by Jeremy Hylton · 24 years ago
  24. 8dabbf1 Fix for the bug in complex() just reported by Ping. by Guido van Rossum · 24 years ago
  25. fc5ce61 SF Patch #103250, by pj99: Optimize a strspn() out of startup. by Guido van Rossum · 24 years ago
  26. d94ade1 Add my name to the copyright notice. by Guido van Rossum · 24 years ago
  27. 691e0e9 Variant of SF patch 103252: Startup optimize: read *.pyc as string, not with getc(). by Tim Peters · 24 years ago
  28. 60f42b5 Move distributed and duplicated config for stat() and fstat() into pyport.h. by Tim Peters · 24 years ago
  29. 44a6ff6 Get rid of the initialization of _PyCompareState_Key. by Guido van Rossum · 24 years ago
  30. ad7c98e This patch adds a new builtin unistr() which behaves like str() by Marc-André Lemburg · 24 years ago
  31. 53451b3 Use rich comparisons in min and max. by Guido van Rossum · 24 years ago
  32. ac7be68 Rich comparisons fall-out: by Guido van Rossum · 24 years ago
  33. 2057970 This patch makes sure that the function name always appears in the error by Ka-Ping Yee · 24 years ago
  34. 8eb4b56 Added a separate extension (.carbon.slb) for Carbon dynamic modules. by Jack Jansen · 24 years ago
  35. 03df3b3 Neil discovered a bad DECREF on warnoptions, that caused repeated by Guido van Rossum · 24 years ago
  36. f1fbc62 Update the docstring for apply() so that "args" is marked as optional by Fred Drake · 24 years ago
  37. 18d4d8f Two changes to from...import: by Guido van Rossum · 24 years ago
  38. ad99177 (Modified) patch by Ping - SF Patch #102681. by Guido van Rossum · 24 years ago
  39. f5df383 Fixed bugs noted by Greg Stein by Moshe Zadka · 24 years ago
  40. ceb9b7c stdout is sometimes a macro; use "outf" instead. by Greg Stein · 24 years ago
  41. f68f2fe Implementation of PEP-0217. This closes the PEP, and patch 103170 by Moshe Zadka · 24 years ago
  42. eec72a7 Add missing Py_DECREF in fast_cfunction. Partial fix for SF bug #127699. by Charles G. Waldman · 24 years ago
  43. fef1243 Oops, one more part of the cygwin patch (SF patch #102409 by jlt63: by Guido van Rossum · 24 years ago
  44. 4c3f57c SF Patch #103154 by jlt63: Cygwin Check Import Case Patch. by Guido van Rossum · 24 years ago
  45. b8584e0 Fix signed/unsigned wng. Unfortunately, (unsigned char) << int by Tim Peters · 24 years ago
  46. 1a7aab7 When a PyCFunction that takes only positional parameters is called with by Fred Drake · 24 years ago
  47. be4c0f5 Recognize pyc files even if they don't end in pyc. by Martin v. Löwis · 24 years ago
  48. 23ab199 Add NotImplemented to the builtin module. by Neil Schemenauer · 24 years ago
  49. 5282044 Revised implementation of CALL_FUNCTION and friends. More revision still needed. by Jeremy Hylton · 24 years ago
  50. f07aad1 CHange error messages for ord(), using "string" instead of "string or Unicode" by Andrew M. Kuchling · 24 years ago
  51. 9bcc68c Whoops! Two stray characters crept in to my last check-in by Andrew M. Kuchling · 24 years ago
  52. 34c20cf Patch #102955, fixing one of the warnings in bug #121479: by Andrew M. Kuchling · 24 years ago
  53. 23fff91 Add definitions for PySys_ResetWarnOptions() and PySys_AddWarnOption(). by Guido van Rossum · 24 years ago
  54. cfd42b5 Add PyErr_Warn(). by Guido van Rossum · 24 years ago
  55. d0977cd Add definitions for standard warning category classes (PyExc_Warning etc.). by Guido van Rossum · 24 years ago
  56. fd0226b Use c2pstr() in stead of Pstring() to convert C-strings to by Jack Jansen · 24 years ago
  57. 0705028 vgetargskeywords(): Patch for memory leak identified in bug #119862. by Barry Warsaw · 24 years ago
  58. b6a54d2 _getframe(): New sys module function for getting at the stack frame. by Barry Warsaw · 24 years ago
  59. cc343ca Make isinstance() more permissive in what types of arguments it by Neil Schemenauer · 24 years ago
  60. 60a1e7f Clarified some of the error messages, esp. "read-only character by Guido van Rossum · 24 years ago
  61. 83fb073 Plug a memory leak in com_import_stmt(): the tuple created to hold the by Guido van Rossum · 24 years ago
  62. 102e457 SF bug 119622: compile errors due to redundant atof decls. I don't understand by Tim Peters · 24 years ago
  63. 128bcf4 Fix syntax error. Submitted by Bill Bumgarner. Apparently this is by Guido van Rossum · 24 years ago
  64. 215c340 Rip out DOS-8x3 support. by Guido van Rossum · 24 years ago
  65. 2cffc7d Move our own getopt() implementation to _PyOS_GetOpt(), and use it by Thomas Wouters · 24 years ago
  66. 6b4ec51 Fix for SF bug #117241 by Jeremy Hylton · 24 years ago
  67. c8fcdcb Patch 102114, Bug 11725. On OpenBSD (but apparently not on the other by Guido van Rossum · 24 years ago
  68. 661ea26 Ka-Ping Yee <ping@lfw.org>: by Fred Drake · 24 years ago
  69. 237b5f4 Andy Dustman <adustman@users.sourceforge.net>: by Fred Drake · 24 years ago
  70. 0be483f Do a better job at staying on-screen :P (Sorry, it's late here.) I'm by Thomas Wouters · 24 years ago
  71. 8fb62a2 Adjust debugging code in the implementation of the DUP_TOPX bytecode, use by Thomas Wouters · 24 years ago
  72. 48fba73 Remove the last gcc -Wall warning about possible use of an uninitialized by Fred Drake · 24 years ago
  73. 35ba689 Attempt to fix bogus gcc -Wall warnings reported by Marc-Andre Lemburg, by Tim Peters · 24 years ago
  74. e693df9 Avoid a couple of "value computed is not used" warnings from gcc -Wall; by Fred Drake · 24 years ago
  75. a6c2eb5 Donn Cave <donn@u.washington.edu>: by Fred Drake · 24 years ago
  76. 98dc065 SF "bug" 115973: patches from Norman Vine so that shared libraries and by Tim Peters · 24 years ago
  77. 1f7838b Detect conflicting Python DLL on module import under Windows - as per [ Patch #101676 ] by Mark Hammond · 24 years ago
  78. 8429448 _PyImport_Fini(): Closed small memory leak when an embedded app calls by Barry Warsaw · 24 years ago
  79. 42c83af The 2.0b2 change to write .pyc files in exclusive mode (if possible) by Tim Peters · 24 years ago
  80. d5fadf7 Rationalize use of limits.h, moving the inclusion to Python.h. by Fred Drake · 24 years ago
  81. 9e28515 Andrew Kuchling <akuchlin@mems-exchange.org>: by Fred Drake · 24 years ago
  82. 0afff38 Special case the "s#" PyArg_Parse() token for Unicode objects: by Marc-André Lemburg · 24 years ago
  83. 55a8338 On Unix, use O_EXCL when creating the .pyc/.pyo files, to avoid a race condition by Guido van Rossum · 24 years ago
  84. d1ba443 This patch adds a new Python C API called PyString_AsStringAndSize() by Marc-André Lemburg · 24 years ago
  85. e84b740 Obscure marshal fixes: by Tim Peters · 24 years ago
  86. 9e8181b Make better use of GNU Pth -- patch by Andy Dustman. by Guido van Rossum · 24 years ago
  87. 691270f Deferred the attribute name object type checking to the underlying by Marc-André Lemburg · 24 years ago
  88. 6f25618 Add PyOS_getsig() and PyOS_setsig() -- wrappers around signal() or by Guido van Rossum · 24 years ago
  89. a454ebd Added B format char to Py_BuildValue (same as b,h,i, but makes by Jack Jansen · 24 years ago
  90. b763b9d Cast UCHAR_MAX to int before doing the comparison for overflow of the by Jack Jansen · 24 years ago
  91. fd1f1be com_continue_stmt(): Improve error message when continue is found by Fred Drake · 24 years ago
  92. bbcf2a7 This patch hopefully fixes the problem with "es#" and "es" in by Marc-André Lemburg · 24 years ago
  93. f26cda6 The GCC version is loooooooooong; put it on a new line. by Guido van Rossum · 24 years ago
  94. f4d189f All right. More uniformity, and extra blank lines. by Guido van Rossum · 24 years ago
  95. 7ca7b5a Use periods, not semicolons between Copyright and All Rights Reserved. by Guido van Rossum · 24 years ago
  96. 547936c Fix the char* vs. const char* mismatch for the argument of aix_loaderror() by Vladimir Marangozov · 24 years ago
  97. 76ad68a Change the copyright notice according to CNRI's wishes, with by Guido van Rossum · 24 years ago
  98. 1fa0b89 changed \x to consume exactly two hex digits. implements PEP-223 by Fredrik Lundh · 24 years ago
  99. 412f246 PyInterpreterState_New is not thread-safe, and the recent fix to _PyPclose by Tim Peters · 24 years ago
  100. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago