| Commit message (Expand) | Author | Age | Files | Lines |
* | Break some cycles when the widget is destroyed. | Guido van Rossum | 1999-06-25 | 1 | -0/+8 |
|
|
* | Greg McFarlane submitted two missing Text methods: mark_next() and | Guido van Rossum | 1999-06-21 | 1 | -0/+4 |
|
|
* | Greg McFarlane writes: Tkinter.Text.tag_add should take multiple | Guido van Rossum | 1999-06-01 | 1 | -2/+2 |
|
|
* | Nathan Paul Simons noticed that the grid_remove() method was missing. | Guido van Rossum | 1999-05-05 | 1 | -0/+2 |
|
|
* | Delete an accidentally checked-in feature that actually broke more | Guido van Rossum | 1999-04-08 | 1 | -9/+0 |
|
|
* | lower, tkraise/lift hide Misc.lower, Misc.tkraise/lift, | Guido van Rossum | 1999-04-07 | 1 | -3/+8 |
|
|
* | Bug reported by Jim Robinson: | Guido van Rossum | 1999-03-16 | 1 | -4/+22 |
|
|
* | Put a try-except around the "image delete" call in Image.__del__ to | Guido van Rossum | 1999-02-08 | 1 | -2/+6 |
|
|
* | This hopefully fixes the problem of having to set PATH | Guido van Rossum | 1999-01-04 | 2 | -1/+68 |
|
|
* | Add XXX comment about the need to add a dump() method to the Text | Guido van Rossum | 1998-12-21 | 1 | -0/+1 |
|
|
* | grid_bbox(): support new Tk API: grid bbox ?column row? ?column2 row2? | Barry Warsaw | 1998-12-15 | 1 | -4/+8 |
|
|
* | Turtle graphics | Guido van Rossum | 1998-12-04 | 1 | -0/+343 |
|
|
* | Perhaps a controversial change: when reporting a callback exception, | Guido van Rossum | 1998-10-13 | 1 | -0/+3 |
|
|
* | Added {xview,yview}_{moveto,scroll} to the Canvas class. | Barry Warsaw | 1998-10-13 | 1 | -0/+8 |
|
|
* | Updated listbox methods to Tk 8.0. (Moved some around, added | Guido van Rossum | 1998-10-13 | 1 | -12/+20 |
|
|
* | When no master widget is specified, use options['parent'] if it exists. | Guido van Rossum | 1998-10-12 | 1 | -0/+2 |
|
|
* | Only reference Tkinter._default_root when needed. | Guido van Rossum | 1998-10-12 | 1 | -3/+2 |
|
|
* | The message "Exception in Tkinter callback" should go to stderr. | Guido van Rossum | 1998-10-06 | 1 | -4/+4 |
|
|
* | NSEW is also valid for -sticky | Barry Warsaw | 1998-10-01 | 1 | -0/+1 |
|
|
* | Added NS and EW constants, which are meaningful values for grid's | Barry Warsaw | 1998-10-01 | 1 | -1/+3 |
|
|
* | Ignore the TclError exception raised when deleting the registration | Guido van Rossum | 1998-09-14 | 1 | -1/+4 |
|
|
* | Make bind variants without a sequence return a tuple of sequences | Guido van Rossum | 1998-08-31 | 1 | -1/+27 |
|
|
* | Fredrik Lundh's font wrapper. | Guido van Rossum | 1998-08-11 | 1 | -0/+192 |
|
|
* | Added coords() and identify() methods to Scale class. | Guido van Rossum | 1998-08-11 | 1 | -0/+4 |
|
|
* | Nannified. | Guido van Rossum | 1998-08-10 | 1 | -3/+2 |
|
|
* | From: "Fredrik Lundh" <fredrik@pythonware.com> | Guido van Rossum | 1998-08-07 | 1 | -5/+7 |
|
|
* | From: Nicolas CHAUVAT <nico@caesium.fr> | Guido van Rossum | 1998-07-16 | 1 | -1/+1 |
|
|
* | Tk.__init__(): In computing baseName, add ".pyo" to list of dropped | Fred Drake | 1998-07-15 | 1 | -1/+2 |
|
|
* | Allow binding a Tcl command (given as a string) as well as a Python | Guido van Rossum | 1998-06-25 | 1 | -3/+3 |
|
|
* | Turns out that 'winfo id' returns the id as a hex string, with 0x prefix. | Guido van Rossum | 1998-06-19 | 1 | -1/+1 |
|
|
* | Different trick to get the _test() window to pop up. | Guido van Rossum | 1998-06-19 | 1 | -1/+5 |
|
|
* | getint() now raises ValueError, not TclError, on errors. | Guido van Rossum | 1998-06-09 | 1 | -2/+2 |
|
|
* | Get rid of nearly all clals to self._do -- turns out self.tk.call can | Guido van Rossum | 1998-05-19 | 1 | -38/+48 |
|
|
* | When a file name is selected ("OK" button, <Return> in the filename entry), | Fred Drake | 1998-05-06 | 1 | -1/+5 |
|
|
* | Change the names of all methods in the Wm class: they are now | Guido van Rossum | 1998-05-01 | 1 | -27/+56 |
|
|
* | Another optimization, probably of negligeable effect: instead of | Guido van Rossum | 1998-04-30 | 1 | -82/+78 |
|
|
* | In _bind(), found a way to test for break without a temp variable. | Guido van Rossum | 1998-04-29 | 1 | -5/+5 |
|
|
* | Save a tiny bit of time: self.tk.call takes a tuple argument so it's | Guido van Rossum | 1998-04-29 | 1 | -70/+62 |
|
|
* | Import MacOS at the top instead of insize Tk.__init__() -- the latter | Guido van Rossum | 1998-04-29 | 1 | -10/+7 |
|
|
* | When setting the event structure fields, don't die when the widget | Guido van Rossum | 1998-04-27 | 1 | -1/+4 |
|
|
* | Add image_types() and image_names() as methods to Misc class. | Guido van Rossum | 1998-04-10 | 1 | -0/+8 |
|
|
* | Another easter present. | Guido van Rossum | 1998-04-10 | 1 | -0/+321 |
|
|
* | Restructured the event_* calls slightly -- there's really no need to | Guido van Rossum | 1998-04-06 | 1 | -14/+11 |
|
|
* | Return the name of the Tcl command defined by _bind(). This can | Guido van Rossum | 1998-03-27 | 1 | -5/+13 |
|
|
* | Get rid of the Emacs cruft now that Python-mode guess the desired settings! | Guido van Rossum | 1998-03-26 | 1 | -6/+0 |
|
|
* | Give in to the tab police. | Guido van Rossum | 1998-03-20 | 6 | -285/+295 |
|
|
* | Typo: baseWidht -> baseWidth. | Guido van Rossum | 1998-02-24 | 1 | -1/+1 |
|
|
* | Fix bug in trace_vdelete(); should use master's delete command. | Guido van Rossum | 1998-02-19 | 1 | -1/+2 |
|
|
* | Add trace methods to class Variable | Guido van Rossum | 1998-01-14 | 1 | -5/+15 |
|
|
* | Two critical fixes to the changes that I made for Greg McFarlane -- | Guido van Rossum | 1997-12-30 | 1 | -3/+3 |
|
|