1. 0c92000 Ignore the TclError exception raised when deleting the registration by Guido van Rossum · 26 years ago
  2. c86b7c6 Make bind variants without a sequence return a tuple of sequences by Guido van Rossum · 26 years ago
  3. b4750db Added coords() and identify() methods to Scale class. by Guido van Rossum · 26 years ago
  4. 182c590 Tk.__init__(): In computing baseName, add ".pyo" to list of dropped by Fred Drake · 26 years ago
  5. 88b63b8 Allow binding a Tcl command (given as a string) as well as a Python function. by Guido van Rossum · 26 years ago
  6. cef4c84 Turns out that 'winfo id' returns the id as a hex string, with 0x prefix. by Guido van Rossum · 26 years ago
  7. 268824e Different trick to get the _test() window to pop up. by Guido van Rossum · 26 years ago
  8. fe02efd getint() now raises ValueError, not TclError, on errors. by Guido van Rossum · 26 years ago
  9. 0bd5433 Get rid of nearly all clals to self._do -- turns out self.tk.call can by Guido van Rossum · 26 years ago
  10. e365a59 Change the names of all methods in the Wm class: they are now by Guido van Rossum · 26 years ago
  11. 0132f69 Another optimization, probably of negligeable effect: instead of by Guido van Rossum · 26 years ago
  12. dc59340 In _bind(), found a way to test for break without a temp variable. by Guido van Rossum · 26 years ago
  13. f975699 Save a tiny bit of time: self.tk.call takes a tuple argument so it's by Guido van Rossum · 26 years ago
  14. f0c891a Import MacOS at the top instead of insize Tk.__init__() -- the latter by Guido van Rossum · 26 years ago
  15. e86271a When setting the event structure fields, don't die when the widget by Guido van Rossum · 26 years ago
  16. c296651 Add image_types() and image_names() as methods to Misc class. by Guido van Rossum · 27 years ago
  17. 56c04b8 Restructured the event_* calls slightly -- there's really no need to by Guido van Rossum · 27 years ago
  18. 117a5a8 Return the name of the Tcl command defined by _bind(). This can by Guido van Rossum · 27 years ago
  19. cd0f59e Get rid of the Emacs cruft now that Python-mode guess the desired settings! by Guido van Rossum · 27 years ago
  20. c457048 Give in to the tab police. by Guido van Rossum · 27 years ago
  21. 21df8f5 Typo: baseWidht -> baseWidth. by Guido van Rossum · 27 years ago
  22. 0001a11 Fix bug in trace_vdelete(); should use master's delete command. by Guido van Rossum · 27 years ago
  23. e2c6e20 Add trace methods to class Variable by Guido van Rossum · 27 years ago
  24. 1cd6a45 Two critical fixes to the changes that I made for Greg McFarlane -- by Guido van Rossum · 27 years ago
  25. 9fd41e3 Fixed several bugs reported by Greg McFarmane: by Guido van Rossum · 27 years ago
  26. 4d9d3f1 Typo: Widht instead of Width... by Guido van Rossum · 27 years ago
  27. b532399 PhotoImage.put(): Fixed -to handling, including backward compatibility hack. by Fred Drake · 27 years ago
  28. f0413d4 Added tag_prevrange analogous to rag_nextrange. by Guido van Rossum · 27 years ago
  29. 98b9d77 Change _nametowidget to nametowidget -- it is a public interface. by Guido van Rossum · 27 years ago
  30. 7814ea6 Last minute fix to Text.window_cget(), which should properly Tcl-ify by Guido van Rossum · 27 years ago
  31. 5ac00ac Fix problem detected by Greg McFarlane -- callbacks passed to by Guido van Rossum · 27 years ago
  32. 80f8be8 Support for the "event" command, new in Tk 4.2. By Case Roole. by Guido van Rossum · 27 years ago
  33. c0b9319 bind_class should return a value by Guido van Rossum · 27 years ago
  34. 368e06b Some restructuring. by Guido van Rossum · 27 years ago
  35. 83bd9a9 Move Widget.config() c.s. to Misc class, so the Tk class also inherits them. by Guido van Rossum · 27 years ago
  36. 9918e0c Add missing comma to make a tuple of (tagOrId). by Guido van Rossum · 27 years ago
  37. f53c86c Add dummies for create/delete filehandles, just so that vanilla Grail by Guido van Rossum · 27 years ago
  38. 9d9af2c Fixes for the Mac. (Jack) by Guido van Rossum · 27 years ago
  39. d6615ab Get READABLE c.s. from _tkinter instead of conditional definition. by Guido van Rossum · 27 years ago
  40. 65c78e1 Use dictionary's update() method in _cnfmerge(). by Guido van Rossum · 27 years ago
  41. c8296db Widget._setup(): Support name=None in a similar way to the handling of other by Fred Drake · 27 years ago
  42. 16cd332 Add root.tkraise() to the _test() program so the window doesn't hide by Guido van Rossum · 27 years ago
  43. 526749b Misc.__init__(): Removed method, replaced with class attribute (which by Fred Drake · 27 years ago
  44. 103cc6d Patch by Craig McPheeters to clean up the back-references to widgets by Guido van Rossum · 28 years ago
  45. 9580609 Require _tkinter -- don't attempt to import tkinter when _tkinter does by Guido van Rossum · 28 years ago
  46. 764d6c7 Gave the Listbox selection methods their correct (longer) names. by Guido van Rossum · 28 years ago
  47. 76f587b Avoid traceback in selection_own_get() when no Tk widget owns the by Guido van Rossum · 28 years ago
  48. 41dc09d (Tkinter.py): Add support for Frame(w, class_="classname") as an alternative by Fred Drake · 28 years ago
  49. 8371013 Added config(ure) method to Image class. (Fred Drake) by Guido van Rossum · 28 years ago
  50. 0b96b94 Change the default values for IntVar and DoubleVar to numbers (they by Guido van Rossum · 28 years ago
  51. c0967cd Added a bunch of new winfo options; we should now be up to date with by Guido van Rossum · 28 years ago
  52. 58103d3 Turn leading minus sign into underscore for image widget name -- the by Guido van Rossum · 28 years ago
  53. 73eba25 Don't require leading '-' on option name to Text.tag_cget by Guido van Rossum · 28 years ago
  54. 40f7a55 Get rid of bogus binding of <Delete> to a function that deletes the next by Guido van Rossum · 28 years ago
  55. 1495747 Added support for floating point resolution to Scale.get(). by Guido van Rossum · 28 years ago
  56. 0c37369 (Tkinter.py): Fixed bug in re-implementation of OptionMenu. by Fred Drake · 28 years ago
  57. 28574b5 (Fred Drake:) Re-wrote the OptionMenu class to allow access to a real by Guido van Rossum · 28 years ago
  58. cab3c3b (Tkinter.py): Improve application basename determination to make .py and by Fred Drake · 28 years ago
  59. 3faf9b4 (Tkinter.py): Fixed dumb typo in Misc.tk_setPalette(). by Fred Drake · 28 years ago
  60. 3c602d7 (Tkinter.py): Many revisions for Tk 4.X: Added clipboard support, updated by Fred Drake · 28 years ago
  61. 6e8ec59 Implement lower by calling lower, not lift. by Guido van Rossum · 28 years ago
  62. 688bbfc simpler version of the previous fix by Guido van Rossum · 28 years ago
  63. 8535b29 compatibility changes suggested by Jack, by Guido van Rossum · 28 years ago
  64. 42b78e6 Fixed Entry.select_from() to acually call the "select from" widget by Guido van Rossum · 28 years ago
  65. 2caac73 Added Menu.insert*() methods [Fred] by Guido van Rossum · 28 years ago
  66. e1a7a3b Add initial values to variables to avoid crash in __del__ by Guido van Rossum · 28 years ago
  67. 5c8c91b Changes for Canvas by Fred by Guido van Rossum · 28 years ago
  68. c417ef8 Added a small test program. by Guido van Rossum · 28 years ago
  69. 5468a7b stupid typo in latest fix ('Name' should be 'name') by Guido van Rossum · 28 years ago
  70. 9afdabf Add missing close parenthesis. by Guido van Rossum · 28 years ago
  71. c8b4791 Two independent changes: by Guido van Rossum · 28 years ago
  72. ad8b3ba Restore the capability to pass a class (usually Pack) as an option to widget by Guido van Rossum · 28 years ago
  73. 421bb0e fix canvas bind commands by Guido van Rossum · 28 years ago
  74. 422cc7f more changes copied from Grail by Guido van Rossum · 28 years ago
  75. 63e39ae Made Place.info == Pack.info by Guido van Rossum · 28 years ago
  76. a5f875f Yet another mini fix to pack/grid info. by Guido van Rossum · 28 years ago
  77. 3626999 Some more changes from the net... Typos, 4.0/4.1 issues, new tkButtonInvoke(). by Guido van Rossum · 28 years ago
  78. 37dcab1 Resync with Grail's Tkinter.py. by Guido van Rossum · 28 years ago
  79. 8324836 Disable pythons own eventhandling on the mac. by Jack Jansen · 29 years ago
  80. 10d0f8f Renamed module tkinter to _tkinter by Jack Jansen · 29 years ago
  81. 46f92d2 add Listbox.activate() by Guido van Rossum · 29 years ago
  82. a1db48b fix Menu.add_command etc. by Guido van Rossum · 29 years ago
  83. f7f79ac better version sanity checks; get rid of Widget.unbind_class() by Guido van Rossum · 29 years ago
  84. 96ebbd3 new after options; text.search; new image methods by Guido van Rossum · 29 years ago
  85. 71b1a90 added getitem/setitem to Image class; changed call wrapping (again) by Guido van Rossum · 29 years ago
  86. a5773dd move constants to Tkconstants; added some; overridable error reporting; fix typo in propagate by Guido van Rossum · 29 years ago
  87. bf4d8f9 added OptionMenu class (tk_optionMenu interface) by Guido van Rossum · 29 years ago
  88. 1d59df2 added select_present and select_range to Entry widget by Guido van Rossum · 29 years ago
  89. a22a70a added some missing constants by Guido van Rossum · 29 years ago
  90. 35f67fb keyword arguments; redid Photo image class; other goodies by Guido van Rossum · 29 years ago
  91. 761c5ab Tk 4.0 and Tcl 7.4 are now standard by Guido van Rossum · 29 years ago
  92. 903abee fix typo in tag_nextrange by Guido van Rossum · 30 years ago
  93. 7e9394a add TkVersion,TclVersion; don't drop in debugger by Guido van Rossum · 30 years ago
  94. 5505d56 Fixed 'propagate' method by Guido van Rossum · 30 years ago
  95. 780044f added option interface by Guido van Rossum · 30 years ago
  96. f023ab0 Dialog.py: d.num should be numeric, not string by Guido van Rossum · 30 years ago
  97. ef8f881 Add Widget.unbind and {Canvas,Text}.tag_unbind. by Guido van Rossum · 30 years ago
  98. 27b77a4 read various startup files in Tcl and Python based upon className and baseName. by Guido van Rossum · 30 years ago
  99. 5e0c25b Fix bug in At() (Steen) by Guido van Rossum · 30 years ago
  100. 69170c5 Make Pack.newinfo() return a dict by Guido van Rossum · 30 years ago