1. fc1efa3 Make the comment prefix 7 character long, so the lines are properly aligned. by Walter Dörwald · 21 years ago
  2. a9da5ae Use find() instead of looping over the string in expanduser(). by Walter Dörwald · 21 years ago
  3. 76ca1d4 randrange(): Repaired my overly optimistic rewrite, and added comments by Tim Peters · 21 years ago
  4. afb8979 randrange(): 2.3 can no longer raises OverflowError on an int() call, so by Tim Peters · 21 years ago
  5. 0b1b5ad - Added a "community" section. - Cleaned up the HTML. by Jack Jansen · 21 years ago
  6. fc3542f - Create TMPDIR only if it doesn't exist yet by Jack Jansen · 21 years ago
  7. befa37d Minor updates: by Raymond Hettinger · 21 years ago
  8. 3a8fbe7 Include "instances of most classes" in a warning about mutable objects by Fred Drake · 21 years ago
  9. 5edd785 Port test_complex.py to unittest. by Walter Dörwald · 21 years ago
  10. 39c5d66 Give default _elemdict and _propdict attributes to OSA classes, so by Jack Jansen · 21 years ago
  11. 2cf9b95 An indenting error in the code made it miss some suites that have an application by Jack Jansen · 21 years ago
  12. 9ff3f03 Fix whitespace. by Walter Dörwald · 21 years ago
  13. b5155e3 Fix typo. by Raymond Hettinger · 21 years ago
  14. 96a8233 SF patch #751038 fixing SF bug#750092: exec doesn't need newline by Raymond Hettinger · 21 years ago
  15. be97153 SF bug #753451: classmethod abuse --> SystemError by Raymond Hettinger · 21 years ago
  16. 9b15878 Remove debug print on filename with NUL byte. by Greg Ward · 21 years ago
  17. 8e36d28 SF patch #755987 (Jim Ahlstrom): by Greg Ward · 21 years ago
  18. 7d98fb9 Add missing DECREF. by Raymond Hettinger · 21 years ago
  19. 783eaf4 Change all header strings to be as if they were capitalize()'ed. Also call by Brett Cannon · 21 years ago
  20. 5ecd6c4 Fix typo in comment. by Walter Dörwald · 21 years ago
  21. e8049bef Use _PyEval_SliceIndex to handle list.index() calls with by Walter Dörwald · 21 years ago
  22. 8e9b80f Remove short-circuitying grubbing by using last grubbed buffer. It's by Ken Manheimer · 21 years ago
  23. 0887c73 Fix docstring by Raymond Hettinger · 21 years ago
  24. 93719b5 Updated documentation for the new slice arguments for list.index(). by Walter Dörwald · 21 years ago
  25. e0a1bb6 Whitespace normalization. by Walter Dörwald · 21 years ago
  26. 53e54fd Make sure the files in the installer have group "admin", otherwise by Jack Jansen · 21 years ago
  27. 2743d87 Fix sloppy index() implementation: by Guido van Rossum · 21 years ago
  28. 77cdeaf Modernize Lib/posixpath.py: Use startswith(), endswith(), rstrip(), by Walter Dörwald · 21 years ago
  29. 364ca40 SF Patch 569574 - enhancements to cgitb for plain text display by Skip Montanaro · 21 years ago
  30. d05abde SF #754014: list.index() should accept optional start, end arguments by Raymond Hettinger · 21 years ago
  31. c8106e1 test_posixpath.py now uses unittest. The output file is no longer needed. by Raymond Hettinger · 21 years ago
  32. 51dead7 Convert some repetitive code into a loop by Neal Norwitz · 21 years ago
  33. 938b7a0 Fix some markup nits by Neal Norwitz · 21 years ago
  34. 8ab2ec4 SF bug 751956: graminit.[ch] don't build on windows by Tim Peters · 21 years ago
  35. 98a379e Add test for bug #751998. by Neal Norwitz · 21 years ago
  36. b47243a Complete rewrite of tests by Walter Dorwald as unittest tests. by Brett Cannon · 21 years ago
  37. 00b0966 Don't use the module object setattr when importing submodules. Instead, by Neil Schemenauer · 21 years ago
  38. e0c3112 Add item about new threading module functions. by Jeremy Hylton · 21 years ago
  39. f00368f Remove many blanket try/except clauses. by Jeremy Hylton · 21 years ago
  40. a1ad5f6 Correct function name. by Kurt B. Kaiser · 21 years ago
  41. 7345375 Add ':' after IDLE version, fix spacing on a couple of lines I missed by Kurt B. Kaiser · 21 years ago
  42. 7006fa1 Allow passing a build directory on the command line. Also, if the by Jack Jansen · 21 years ago
  43. e537065 Only fix up pathnames in installed scripts when needed, i.e. when not installing by Jack Jansen · 21 years ago
  44. a93b3cc Added a note about FSRef tests failing on MacOS 8.6. by Jack Jansen · 21 years ago
  45. e748f03 This wasn't ansified. Fixed. by Jack Jansen · 21 years ago
  46. 7327918 Import EasyDialogs only when needed, so this works if there is no window by Jack Jansen · 21 years ago
  47. f5e23ff Added two mac items (pimp auto-update and OSA property access). by Jack Jansen · 21 years ago
  48. d3295ba Patch #755147 by Brian Lenihan: by Jack Jansen · 21 years ago
  49. d5b8090 Made DateTime's constructor accept a time.struct_time class, by Gustavo Niemeyer · 21 years ago
  50. f545baa Whitespace normalization. by Tim Peters · 21 years ago
  51. cda32b7 mimetools.choose_boundary() news. by Tim Peters · 21 years ago
  52. 9ca3f02 ^D means EOF on Unix but not on Windows. Expand the example's prompt to by Tim Peters · 21 years ago
  53. 9e6fedd Add explicit text for where an obindex call for generators was since obindex does not cause output of its argument. by Brett Cannon · 21 years ago
  54. 4a671fe Return None to signal that the module the object was defined in was not found when object has no __name__ attr but is needed to figure out location of object. by Brett Cannon · 21 years ago
  55. 424a415 Make CREDITS.txt a Latin-1 file. Extend ViewFile to support file encodings. by Martin v. Löwis · 21 years ago
  56. 04b9d47 choose_boundary(): This no longer uses random, so stop importing it. by Tim Peters · 21 years ago
  57. 080da28 choose_boundary(): Incorporated a threadsafe incrementing counter, so that by Tim Peters · 21 years ago
  58. b1e63c0 Install IDLE's .def files; these are essential for the configuration! by Guido van Rossum · 21 years ago
  59. 5041cf6 Changes to install the new idle: it's now in Lib/idlelib instead of by Guido van Rossum · 21 years ago
  60. 8b76351 Add a missing 'self,' to a super call in recently checked-in code. by Guido van Rossum · 21 years ago
  61. 7de3772 Forwardport Patch from IDLEfork SF 615312 by Kurt B. Kaiser · 21 years ago
  62. 9e8b828 Support testing in .../Lib/idlelib when calling <python PyShell.py> by Kurt B. Kaiser · 21 years ago
  63. f35092c Move to Version 1.0b2 by Kurt B. Kaiser · 21 years ago
  64. 523008c Update copyright dates. by Greg Ward · 21 years ago
  65. 1ef2365 Patch #751107: Slant must be 'roman', not 'normal'. by Martin v. Löwis · 21 years ago
  66. d6efae5 Properly deal with tuples in Open._fixresult. Fixes bug reported in by Martin v. Löwis · 21 years ago
  67. 19d1734 Patch #752671: NetBSD needs to link libintl to _locale.so. by Martin v. Löwis · 21 years ago
  68. 61e2c9a Forwardport Patch from IDLEfork SF 610329 Remove deprecated tempfile usage by Kurt B. Kaiser · 21 years ago
  69. d141a8c Use -R instead of -rpath on Solaris. Fixes #749911. by Martin v. Löwis · 21 years ago
  70. 368de8f Give a warning if SO is set. Fixes #610332. by Martin v. Löwis · 21 years ago
  71. 1867f24 Always unwrap _socketobj in socket.ssl. Revert httplib.py 1.25. Fixes #754447. by Martin v. Löwis · 21 years ago
  72. bc12262 Properly bracket variables. Fixes part of #749911. by Martin v. Löwis · 21 years ago
  73. b8c084e Support keyword and topics help in cli(). Fixes #715782. by Martin v. Löwis · 21 years ago
  74. 17fb507 Treat empty dat/dir pairs as dumbdbm. Fixes #744687. by Martin v. Löwis · 21 years ago
  75. 8316feb Explicitly undefine PACKAGE_ variables. Fixes #746012. by Martin v. Löwis · 21 years ago
  76. ba8f5ff Copy builtin functions as atomic. Fixes #746304. Will backport to 2.2. by Martin v. Löwis · 21 years ago
  77. c1aa8dc Patch #746366: Update to current automake install-sh. Will backport to 2.2. by Martin v. Löwis · 21 years ago
  78. e3b67bc Patch #754340: Fix typo in redirect_request. Will backport to 2.2. by Martin v. Löwis · 21 years ago
  79. 3efa04a Patch #753845: Update README for Redhat 9 Tkinter compile with USC-4. by Martin v. Löwis · 21 years ago
  80. b3a0a66 Remove the 2.2 compatibility module boolcheck.py and related code by Kurt B. Kaiser · 21 years ago
  81. ae8bbff Remove reference to IDLEfork by Kurt B. Kaiser · 21 years ago
  82. 76bcb5c Update NEWS.txt and move info on release 0.8.1 and earlier to HISTORY.txt by Kurt B. Kaiser · 21 years ago
  83. 52ae0a5 Remove comment about Unicode: SF #622831 was fixed loooong ago! by Greg Ward · 21 years ago
  84. ecb544e Get rid of old IDLE. Lib/idlelib rules! by Guido van Rossum · 21 years ago
  85. 91012fe Cause calling interrupt_main in main thread raise KeyboardInterrupt instantly. by Brett Cannon · 21 years ago
  86. 4e64d78 dummy_thread modified to have interrupt_main and to behave appropriately when by Brett Cannon · 21 years ago
  87. 93e8e54 Interrupt module has been folded into the thread module by Kurt B. Kaiser · 21 years ago
  88. a11e846 Add interrupt_main() to thread module. by Kurt B. Kaiser · 21 years ago
  89. efad588 AddressList.__str__(): Get rid of useless, and broken method. Closes by Barry Warsaw · 21 years ago
  90. 59195fd - SF patch 751998 fixes an unwanted side effect of the previous fix by Guido van Rossum · 21 years ago
  91. d321efd Install idlelib and idlelib/Icons as well. by Guido van Rossum · 21 years ago
  92. ce74f8a News about the new IDLE (is more needed?). News about SF patch 751998. by Guido van Rossum · 21 years ago
  93. b1ab4d9 Don't install Tools/idle any more. We now install Tools/scripts/idle by Guido van Rossum · 21 years ago
  94. 373ef37 Install the main script for the new IDLE here. by Guido van Rossum · 21 years ago
  95. ab537e9 Put the main script for the new IDLE here. by Guido van Rossum · 21 years ago
  96. 99d2c25 SF patch 707900, fixing bug 702858, by Steven Taschuk. by Guido van Rossum · 21 years ago
  97. 097da0d Documented the fact that the main class now mimicks the OSA "application" class. by Jack Jansen · 21 years ago
  98. 880be6f Use the new, now preferred, form of referring to object specifiers (through by Jack Jansen · 21 years ago
  99. 8475d02 Re-gegernated with the new gensuitemodule. by Jack Jansen · 21 years ago
  100. c8882b1 - Allow access to poperties of the "application" OSA class directly from by Jack Jansen · 21 years ago