1. e1dedc0 Clarify 'Open Module' dialog text by Guido van Rossum · 26 years ago
  2. 0443079 Restructured into a browser and a widget. by Guido van Rossum · 26 years ago
  3. e6fae1c Generalized the scrolled list which is the base for the class and by Guido van Rossum · 26 years ago
  4. 341d1fe For submenus remember the parent and parent index, so we can grey out our by Jack Jansen · 26 years ago
  5. 99d3c48 Cosmetic change by Guido van Rossum · 26 years ago
  6. 0e0d3e7 Set kAECanInteract and kAECanSwitchLayer flags for the finder interactions. by Jack Jansen · 26 years ago
  7. f35b884 Clarify that close() of a stream opened by popen() returns None if the by Guido van Rossum · 26 years ago
  8. b7ffca3 Don't show function name if there is none by Guido van Rossum · 26 years ago
  9. 0e56568 The help dialog id numbers never got changed when the dialog numbers changed, by Jack Jansen · 26 years ago
  10. 840a84d Updated __main__ unit test by Barry Warsaw · 26 years ago
  11. c2047c1 When run as a script, don't pass a fake __main__ dictionary; use the real one. by Guido van Rossum · 26 years ago
  12. e0e5982 When errno is zero, avoid calling strerror() and use "Error" for the message. by Guido van Rossum · 26 years ago
  13. b0e5718 Fix so that after a fork() -- on Unix only -- the template gets recalculated. by Guido van Rossum · 26 years ago
  14. d3a6a14 Doc strings by Chris Petrilli. Also added MD5Type object. by Guido van Rossum · 26 years ago
  15. a0deb64 No need to issue a fatal error if the PyDict_SetItemString fails; the by Guido van Rossum · 26 years ago
  16. 35e55da Polish the Debugger GUI a bit. Closing it now also does the right thing. by Guido van Rossum · 26 years ago
  17. fc6aba5 ACK! There was still an unescaped newline in a docstring. by Guido van Rossum · 26 years ago
  18. 35f7542 Ad primitive debugger interface (so far it will step and show you the by Guido van Rossum · 26 years ago
  19. f035d3b Misc by Guido van Rossum · 26 years ago
  20. 9f1292d Perhaps a controversial change: when reporting a callback exception, by Guido van Rossum · 26 years ago
  21. ad24ae1 Whoops -- referenced self.top before it was set. by Guido van Rossum · 26 years ago
  22. 4eaadf0 Added {xview,yview}_{moveto,scroll} to the Canvas class. by Barry Warsaw · 26 years ago
  23. 423938a Added history and completion commands. by Guido van Rossum · 26 years ago
  24. ca5619c Updated by Guido van Rossum · 26 years ago
  25. 7895562 Add class browser functionality. by Guido van Rossum · 26 years ago
  26. ae08d38 Add a close() method and bind to WM_DELETE_WINDOW protocol by Guido van Rossum · 26 years ago
  27. 1956352 Clear the linecache before printing a traceback by Guido van Rossum · 26 years ago
  28. 49c1a7e Added class browser binding. by Guido van Rossum · 26 years ago
  29. 7f5c9ef Much improved, much left to do. by Guido van Rossum · 26 years ago
  30. e73d702 Ever-so-slight improvementL the patterns to recognize import by Guido van Rossum · 26 years ago
  31. 7d447aa Moved search and match around so that search is documented first. by Guido van Rossum · 26 years ago
  32. 3f08d40 Make the return key do what I mean more often. by Guido van Rossum · 26 years ago
  33. 4650df9 Make the return key do what I mean more often. by Guido van Rossum · 26 years ago
  34. b39b90d Doc strings by Chris Petrilli. by Guido van Rossum · 26 years ago
  35. 243ac4f Updated listbox methods to Tk 8.0. (Moved some around, added by Guido van Rossum · 26 years ago
  36. 439c467 Adding the beginnings of a Class browser. Incomplete, yet. by Guido van Rossum · 26 years ago
  37. b341888 Add new command, "Open module". You select or type a module name, by Guido van Rossum · 26 years ago
  38. 5af7a72 Subsume functionality from Popup menu in Debug menu. by Guido van Rossum · 26 years ago
  39. 82e44b1 Get rid of PopUp menu. by Guido van Rossum · 26 years ago
  40. e7b2e65 Generalize menu creation. by Guido van Rossum · 26 years ago
  41. 219ffde Add Debug and Help menu items. by Guido van Rossum · 26 years ago
  42. 2aeeb55 Added a menu bar to every window. by Guido van Rossum · 26 years ago
  43. d8d676c Add menu configuration to the event configuration. by Guido van Rossum · 26 years ago
  44. d020cf3 Pass a root to the help window. by Guido van Rossum · 26 years ago
  45. deff89c Replaced fprintf(stderr,...) with PySys_WriteStderr(...) where appropriate. by Jack Jansen · 26 years ago
  46. 3179b36 When no master widget is specified, use options['parent'] if it exists. by Guido van Rossum · 26 years ago
  47. 7f20263 Only reference Tkinter._default_root when needed. by Guido van Rossum · 26 years ago
  48. 2f3667a Replace fprintf(stderr, ...) with PySys_WriteStderr(...). by Guido van Rossum · 26 years ago
  49. 8442af3 Patches for mywrite() by Marc Lemburg: save/restore the error state by Guido van Rossum · 26 years ago
  50. 41f0a98 Looks like I didn't test this interactively. The EventHook() code was by Guido van Rossum · 26 years ago
  51. 69ef7d6 Add parent argument to 'to to line number' dialog box. by Guido van Rossum · 26 years ago
  52. 0688436 Enhancements by Sjoerd Mullender: support for from a.b import c import a . b by Guido van Rossum · 26 years ago
  53. 7a840e8 Add support for dotted module names to readmodule(). by Guido van Rossum · 26 years ago
  54. 1c5fb1c Make mimetypes.guess_type understand data URLs. (Sjoerd Mullender) by Guido van Rossum · 26 years ago
  55. 8571ed8 Add a label at the top showing (very basic) help for the stack viewer. by Guido van Rossum · 26 years ago
  56. 3d0669d Add Unix main script and test program. by Guido van Rossum · 26 years ago
  57. 3b4ca0d Initial checking of Tk-based Python IDE. by Guido van Rossum · 26 years ago
  58. dc1adab Patch by Jonathan Giddy (with some cleanup by me) to always use the by Guido van Rossum · 26 years ago
  59. afd974c Document the new list.extend() method. Interesting enough, the by Barry Warsaw · 26 years ago
  60. dedf6d6 listextend(): New method which implements L.extend(L2). by Barry Warsaw · 26 years ago
  61. e33bba8 New version that is much more compact and easier to maintain. (Sjoerd) by Guido van Rossum · 26 years ago
  62. 3886026 Remove unreachable code. (Sjoerd) by Guido van Rossum · 26 years ago
  63. 1554b7b Use constants defined in cl module. (Sjoerd) by Guido van Rossum · 26 years ago
  64. 1e57a04 Removed unnecessary import of cl and CL. (Sjoerd) by Guido van Rossum · 26 years ago
  65. 1d5766f Shit -- forgot to set the installer's title to the new version. by Guido van Rossum · 26 years ago
  66. 60009cc Change _tkinter.c compile options. by Guido van Rossum · 26 years ago
  67. 002156d Add bufferobject.c. by Guido van Rossum · 26 years ago
  68. 9c2c1e8 Fix multi-arg list.append() calls. by Guido van Rossum · 26 years ago
  69. 215193b There's no need to declare Tk_GetNumMainWindows() (and it breaks by Guido van Rossum · 26 years ago
  70. 7e48898 Use the t# format where appropriate. Greg Stein. by Guido van Rossum · 26 years ago
  71. b317f8a Implement new format character 't#'. This is like s#, accepting an by Guido van Rossum · 26 years ago
  72. 1db7070 Greg Stein: Implement the new bf_getcharbuffer function, indicating by Guido van Rossum · 26 years ago
  73. 36eef3c Changes by Greg Stein (code) and GvR (design). by Guido van Rossum · 26 years ago
  74. 7e1e574 For 1.5.2a2. by Guido van Rossum · 26 years ago
  75. f6240cf Some kind of source control krept in. by Guido van Rossum · 26 years ago
  76. 98f936b Whatever by Guido van Rossum · 26 years ago
  77. 5bd893b The previous checkin contained an experiment of Greg Stein's that wasn't by Guido van Rossum · 26 years ago
  78. 0f8b30f On Win32, use by Guido van Rossum · 26 years ago
  79. 2a57004 Changes to deal with the sigcheck+intrcheck vs. signalmodule controversy. by Guido van Rossum · 26 years ago
  80. 2e23c31 Make the dependencies really work for the HTML version. by Fred Drake · 26 years ago
  81. dd997f7 Add test for BSDI -- by Nigel Head and otto@mail.olympus.net. by Guido van Rossum · 26 years ago
  82. a57c9b9 Added a whole bunch of descriptions. by Guido van Rossum · 26 years ago
  83. 19b23e5 Use the imp module to get the magic word. by Guido van Rossum · 26 years ago
  84. d076c73 Changes to support other object types besides strings by Guido van Rossum · 26 years ago
  85. 437ff86 Change the default split level to not split on marked \paragraph and by Fred Drake · 26 years ago
  86. b0b1900 If --debug was used, don't delete the temporary .perl file used to by Fred Drake · 26 years ago
  87. 9e46e56 BSDI specific patches, inspired by Nigel Head and otto@mail.olympus.net. by Guido van Rossum · 26 years ago
  88. c501583 Make gcc -Wall happy. by Guido van Rossum · 26 years ago
  89. 89bae99 Make gcc -Wall happy: Remove unused decls of getloclock() and is_lockobject(). by Guido van Rossum · 26 years ago
  90. c206873 Make gcc -Wall happy: by Guido van Rossum · 26 years ago
  91. 7148ca9 Make gcc -Wall happy. by Guido van Rossum · 26 years ago
  92. 562f5b1 Support PYTHONOPTIMIZE variable; by Marc Lemburg. by Guido van Rossum · 26 years ago
  93. e7adf3e Documented PYTHONOPTIMIZE; by Marc Lemburg. by Guido van Rossum · 26 years ago
  94. d5f6c22 Make the version variable static (it has no business being exported). by Guido van Rossum · 26 years ago
  95. 2e782e8 Add buffer module entry points. by Guido van Rossum · 26 years ago
  96. 41f13f2 Added #! line by Guido van Rossum · 26 years ago
  97. 7fef86e Clarify sharedinstall comment by Guido van Rossum · 26 years ago
  98. 06c1808 Add Greg Stein's buffer object API. by Guido van Rossum · 26 years ago
  99. 2e19bd7 Add Greg Stein's buffer object API. by Guido van Rossum · 26 years ago
  100. 8c1e114 Don't attempt to add paragraph and subparagraph sections to the PDF outline. by Fred Drake · 26 years ago