1. 4208d4f Destroy and unlink deleted NoteBook panes. Fixes #516703. 2.2.2 candidate. by Martin v. Löwis · 22 years ago
  2. 8a79727 add seealso referring to site module doc where people can learn how to by Skip Montanaro · 22 years ago
  3. f2041b8 Ignore widgets with unknown names in winfo_children. Fixes #518283. by Martin v. Löwis · 22 years ago
  4. 38a8916 Remove weakref free list. This has the side effect of fixing a memory by Neil Schemenauer · 22 years ago
  5. 9e38c10 fix a typo in PyErr_Format table and add row for 'p' format char by Skip Montanaro · 22 years ago
  6. 0c766a0 Change sys_exit to use METH_VARARGS. by Neal Norwitz · 22 years ago
  7. 496f9e4 Don't imply XPG4 constants from CODESET presence. Fixes #534153. 2.2.2 candiate. by Martin v. Löwis · 22 years ago
  8. 1d46e40 further work on new config system; recent files menu by Steven M. Gava · 22 years ago
  9. 03594bb Fill in this document a bit, adding reminders of items that should be included by Andrew M. Kuchling · 22 years ago
  10. 0c5bc8c further work on new config system; user defined help items by Steven M. Gava · 22 years ago
  11. cedd30b _finally_ tracked down and eliminated a major problem by Steven M. Gava · 22 years ago
  12. 4e526fe Add the "What's New" document to the index of HTML documents. by Fred Drake · 22 years ago
  13. 908632a Implement iterator protocol. by Neil Schemenauer · 22 years ago
  14. 13e34f7 __init__(): We'll try to be more RFC 2821 compliant by providing for a by Barry Warsaw · 22 years ago
  15. 69f0a8e The <link> to the stylesheet should include the type attribute. by Fred Drake · 22 years ago
  16. 3014086 Wire up the makefile to more fully support the "What's New" documents. by Fred Drake · 22 years ago
  17. 9ac14de Wire in the "What's New" document. by Fred Drake · 22 years ago
  18. 03e1031 Add a starter for the next "What's New" document. by Fred Drake · 22 years ago
  19. 15fc72c Make \url to force horizontal mode. by Fred Drake · 22 years ago
  20. aad1849 time and socket were already imported in the module, no need to re-import by Neal Norwitz · 22 years ago
  21. 1ae2875 re was already imported in the module, no need to re-import by Neal Norwitz · 22 years ago
  22. f261223 os was already imported in the module, no need to re-import by Neal Norwitz · 22 years ago
  23. e98d16e Cleanup x so it is not left in module by Neal Norwitz · 22 years ago
  24. 4632117 Missed change METH_OLDARGS to METH_NOARGS for two aliased functions by Neal Norwitz · 22 years ago
  25. 4e6d13c Make object browser work in OSX (by rewriting the old browser by Just van Rossum · 22 years ago
  26. 9a29e7a operate as a filter when no files or directories appear on the command line by Skip Montanaro · 22 years ago
  27. 85ee491 Fix for SF 502085. Don't die when issubclass(t, TypeType) fails. by Guido van Rossum · 22 years ago
  28. 7e78acb Remove last occurrance of PyArg_GetInt. It is deprecated, by Neal Norwitz · 22 years ago
  29. 1543c07 Add a comment that PyArg_GetInt is deprecated and should not be used by Neal Norwitz · 22 years ago
  30. acb29ae make default banner match what the real interpreter displays by Skip Montanaro · 22 years ago
  31. 0679a73 remove unqualified excepts - catch ImportError when trying to import by Skip Montanaro · 22 years ago
  32. 0897f0c eliminate unqualified except when checking for presence of LC_MESSAGES by Skip Montanaro · 22 years ago
  33. a959a36 tighten up unqualified except in currentframe() see bug 411881 by Skip Montanaro · 22 years ago
  34. 2358425 Missed change METH_OLDARGS to METH_NOARGS for two aliased functions by Neal Norwitz · 22 years ago
  35. 3a6f978 Remove many uses of PyArg_NoArgs macro, change METH_OLDARGS to METH_NOARGS. by Neal Norwitz · 22 years ago
  36. 57f8e06 Document the finditer() function and method. This closes SF bug #520904. by Fred Drake · 22 years ago
  37. 6a1e76b Update master Windows build-number list for 2.2.1c2. by Tim Peters · 22 years ago
  38. dbd2d25 Add tests for the iterkeys, itervalues and iteritems by Walter Dörwald · 22 years ago
  39. e990c79 Add missing methods iterkeys, itervalues and iteritems to dict-proxy objects. by Walter Dörwald · 22 years ago
  40. 3787c9d Added description of binhex.Error. by Fred Drake · 22 years ago
  41. a516a59 Include obmalloc.c in the build. by Jack Jansen · 22 years ago
  42. 6d8898b Due to interaction between the MSL C library and the GUSI I/O library I can get reads from sockets to work consistently either for unbuffered binary files or for buffered binary files, but not for both:-( by Jack Jansen · 22 years ago
  43. 03ffbcd Fix SF # 532618 517704, install problems when building modules fail. by Neal Norwitz · 22 years ago
  44. 8c07722 Fix whitespace. by Walter Dörwald · 22 years ago
  45. 4843eb4 Remove bug.py. This is something I sent to Guido via email in or before by Tim Peters · 22 years ago
  46. fdba55f I've been waiting 8 years for KSR to re-emerge from bankruptcy. If they by Tim Peters · 22 years ago
  47. 4b186af SMTP.__init__(): Fixed minor typo in docstring. by Barry Warsaw · 22 years ago
  48. 714d726 Weaklink most toolbox modules, improving backward compatibility. Modules will no longer fail to load if a single routine is missing on the curent OS version, in stead calling the missing routine will raise an exception. by Jack Jansen · 22 years ago
  49. cddc1a0 Quote href properly. by Neil Schemenauer · 22 years ago
  50. 9d79990 Weaklink most toolbox modules, improving backward compatibility. Modules will no longer fail to load if a single routine is missing on the curent OS version, in stead calling the missing routine will raise an exception. by Jack Jansen · 22 years ago
  51. d69711c Remove unnecessary \b. It was causing the RE to miss the tailing by Neil Schemenauer · 22 years ago
  52. 5ee24ae Weaklink most toolbox modules, improving backward compatibility. Modules will no longer fail to load if a single routine is missing on the curent OS version, in stead calling the missing routine will raise an exception. by Jack Jansen · 22 years ago
  53. 29ac3cb Expose RLIM_INFINITY constant. Closes SF patch 489066. by Neil Schemenauer · 22 years ago
  54. 153cc0f If possible, set FD_CLOEXEC flag on file descriptors opened using by Neil Schemenauer · 22 years ago
  55. 1c90d7a tighten up except - os.close only raises OSError see bug 411881 by Skip Montanaro · 22 years ago
  56. 8e5fd53 SF bug 480215: softspace confused in nested print by Tim Peters · 22 years ago
  57. f3f87f7 oops - export InvalidURL in __all__ by Skip Montanaro · 22 years ago
  58. 1e962cb document InvalidURL exception by Skip Montanaro · 22 years ago
  59. 74e77e8 add test for InvalidURL by Skip Montanaro · 22 years ago
  60. 03ff86d add test of InvalidURL by Skip Montanaro · 22 years ago
  61. 9d38997 add InvalidURL exception - raised if port is given but empty or non-numeric by Skip Montanaro · 22 years ago
  62. 1ce0073 tighten up except - in this context, AttributeError is the only exception by Skip Montanaro · 22 years ago
  63. ccbb0ed Add local_hostname to SMTP.__init__(). by Neil Schemenauer · 22 years ago
  64. 6730f26 Add local_hostname option to SMTP.__init__. If supplied, it is used by Neil Schemenauer · 22 years ago
  65. 03f3ee6 Try /var/mail before trying /usr/mail. Most new systems use /var. by Neil Schemenauer · 22 years ago
  66. eff7244 Add more tests for built-in types. Add tests for buffer objects. by Neil Schemenauer · 22 years ago
  67. 0f75e0d Add get_history_item, get_current_history_length, and redisplay functions. by Neil Schemenauer · 22 years ago
  68. e085017 _PyMalloc_DebugRealloc(): simplify decl of "fresh". by Tim Peters · 22 years ago
  69. f06f853 Use linecache for loading source code. Closes SF patch 490374. by Neil Schemenauer · 22 years ago
  70. dbab3e3 Add namespace selection for rlcompleter. Closes SF patch 490026. by Neil Schemenauer · 22 years ago
  71. 62c06ba Minor code cleanup -- no semantic changes. by Tim Peters · 22 years ago
  72. 1941528 Fix example for PyErr_SetFromErrno() (need to pass exception type). by Neil Schemenauer · 22 years ago
  73. 0f2103f Fix wording of sys.exit docstring. Close SF bug 534113. by Neil Schemenauer · 22 years ago
  74. d03c342 Flush stdout before reading next command. Closes SF bug 526357. by Neil Schemenauer · 22 years ago
  75. 3a204a7 Grow the string buffer at a mildly exponential rate for the getc version by Neil Schemenauer · 22 years ago
  76. ddea208 Give Python a debug-mode pymalloc, much as sketched on Python-Dev. by Tim Peters · 22 years ago
  77. 91cc17d Only AttributeError can be raised in this situation - on systems without by Skip Montanaro · 22 years ago
  78. 3c4a629 import statements only raise ImportError, right? by Skip Montanaro · 22 years ago
  79. db5d144 tighten up except - only ValueError can be raised in this situation by Skip Montanaro · 22 years ago
  80. 3c643d8 tighten up except - int() only raises ValueError by Skip Montanaro · 22 years ago
  81. 6ec967d added RFC 2396 tests from Aaron Swartz included in bug # 450225. by Skip Montanaro · 22 years ago
  82. b1ba6b0 no longer needed - converted test_urlparse.py to use unittest by Skip Montanaro · 22 years ago
  83. 0c2c8e7 SF bug 533234: tm_isdst > 1 Passed to strftime. by Tim Peters · 22 years ago
  84. ed19b88 Check in (hopefully) corrected version of last change. by Neil Schemenauer · 22 years ago
  85. ce7fb9b Just whitespace fiddling. by Tim Peters · 22 years ago
  86. 1221c0a Build obmalloc.c directly instead of #include'ing from object.c. by Tim Peters · 22 years ago
  87. c24ea08 Disable the parser hacks that enabled the "yield" keyword using a future by Neil Schemenauer · 22 years ago
  88. 12a6d94 Undo last commit. It's causing the tests to file. by Neil Schemenauer · 22 years ago
  89. c155dd4 Disable the parser hacks that allowed the "yield" keyword to be enabled by Neil Schemenauer · 22 years ago
  90. 558ba52 Remove malloc hooks. by Neil Schemenauer · 22 years ago
  91. fa79c65 Match behavior of the pickle.py module more closely. by Neil Schemenauer · 22 years ago
  92. 79f1813 Add more example exceptions that unpickling can raise. by Neil Schemenauer · 22 years ago
  93. 94b866a Handle os.listdir("") case correctly on Windows. Closes bug 500705. by Neil Schemenauer · 22 years ago
  94. 398b9f6 Disallow open()ing of directories. Closes SF bug 487277. by Neil Schemenauer · 22 years ago
  95. 07c57d4 better solution for bug #533234 courtesy of Tim. by Skip Montanaro · 22 years ago
  96. e8c6a3e guarantee that the dst flag of synthetic "time" tuples passed to strftime by Skip Montanaro · 22 years ago
  97. 92b48b7 use stat attributes instead of tuple entries by Walter Dörwald · 22 years ago
  98. cf43004 Fix broken HTML in the head; this was reported by a user as causing Opera 6.01 by Fred Drake · 22 years ago
  99. 9d50d13 Add news about pymalloc being enabled. by Neil Schemenauer · 22 years ago
  100. 1b0e4fc Use pymalloc for realloc() as well. by Neil Schemenauer · 22 years ago