Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix Tkinter sequence passing. #2906. | Georg Brandl | 2008-06-03 | 1 | -1/+7 |
| | |||||
* | #2906: accept lists for options, and some cosmetic fixes in Tkinter. | Georg Brandl | 2008-05-29 | 1 | -15/+19 |
| | |||||
* | #615772: raise a more explicit error from Tkinter.Misc.__contains__. | Georg Brandl | 2008-05-20 | 1 | -0/+2 |
| | |||||
* | Remove debugging line. | Georg Brandl | 2008-05-20 | 1 | -1/+0 |
| | |||||
* | Tkinter rename reversal: remove tkinter package, adapt imports and docs. | Georg Brandl | 2008-05-20 | 1 | -9/+10 |
| | |||||
* | Tkinter renaming reversal: move modules back in their place. | Georg Brandl | 2008-05-20 | 1 | -0/+3757 |
| | |||||
* | Tkinter renaming reversal: Delete all stubs from lib-tk. | Georg Brandl | 2008-05-20 | 1 | -8/+0 |
| | |||||
* | Tkinter rename, step 2: fix imports and add stub modules. | Georg Brandl | 2008-05-16 | 1 | -0/+8 |
| | |||||
* | Step 1 of Tkinter renaming: move lib-tk modules into a new "tkinter" package. | Georg Brandl | 2008-05-16 | 1 | -3757/+0 |
| | |||||
* | #2535: remove duplicated method. | Georg Brandl | 2008-05-11 | 1 | -3/+0 |
| | |||||
* | #2503 make singletons compared with "is" not == or != | Benjamin Peterson | 2008-03-29 | 1 | -1/+1 |
| | | | | Thanks to Wummel for the patch | ||||
* | Always convert Text.index result to string. | Martin v. Löwis | 2008-01-01 | 1 | -1/+1 |
| | | | | | This improves compatibility with Tcl 8.5, which would otherwise return textindex objects. | ||||
* | Patch #1592250: Add elidge argument to Tkinter.Text.search. | Martin v. Löwis | 2006-11-09 | 1 | -1/+2 |
| | |||||
* | Patch #1524429: Use repr instead of backticks again. | Martin v. Löwis | 2006-07-18 | 1 | -1/+1 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2006-06-19 | 1 | -8/+8 |
| | |||||
* | Fix typo in docstring | Neal Norwitz | 2006-06-17 | 1 | -1/+1 |
| | |||||
* | Patch #1494750: Destroy master after deleting children. | Martin v. Löwis | 2006-06-17 | 1 | -1/+1 |
| | |||||
* | Patch #1096231: Add default argument to wm_iconbitmap. | Martin v. Löwis | 2006-06-17 | 1 | -3/+12 |
| | |||||
* | Patch #763580: Add name and value arguments to | Martin v. Löwis | 2006-06-17 | 1 | -19/+63 |
| | | | | Tkinter variable classes. | ||||
* | Whitespace normalization. | Tim Peters | 2006-04-16 | 1 | -10/+10 |
| | |||||
* | Patch #1063914: Add clipboard_get. | Martin v. Löwis | 2006-04-16 | 1 | -0/+17 |
| | |||||
* | Remove "disgusting hack" in favour of closure (patch #1462235) | Georg Brandl | 2006-04-02 | 1 | -5/+2 |
| | |||||
* | Fix typos. | Walter Dörwald | 2005-11-09 | 1 | -1/+1 |
| | |||||
* | Fix a problem in Tkinter introduced by SF patch #869468 (checked in as | Guido van Rossum | 2005-07-26 | 1 | -6/+0 |
| | | | | | 1.179): delete bogus __hasattr__ and __delattr__ methods on class Tk that were breaking Tkdnd. | ||||
* | Patch #1121234: Properly cleanup _exit and tkerror commands. | Martin v. Löwis | 2005-03-01 | 1 | -0/+7 |
| | | | | Will backport to 2.4. | ||||
* | Patch #986929: Add support for wish -sync and -use options. | Martin v. Löwis | 2004-08-03 | 1 | -2/+3 |
| | |||||
* | Whitespace normalization, via reindent.py. | Tim Peters | 2004-07-18 | 1 | -1/+1 |
| | |||||
* | Implementation of patch 869468 | David Ascher | 2004-02-18 | 1 | -5/+30 |
| | | | | | | | | | | | | | | | Allow the user to create Tkinter.Tcl objects which are just like Tkinter.Tk objects except that they do not initialize Tk. This is useful in circumstances where the script is being run on machines that do not have an X server running -- in those cases, Tk initialization fails, even if no window is ever created. Includes documentation change and tests. Tested on Linux, Solaris and Windows. Reviewed by Martin von Loewis. | ||||
* | Replace backticks with repr() or "%r" | Walter Dörwald | 2004-02-12 | 1 | -6/+6 |
| | | | | From SF patch #852334. | ||||
* | Fix SF bug #763637, 2.3b2 unpack tuple of wrong size in after_cancel | Neal Norwitz | 2003-07-01 | 1 | -2/+4 |
| | | | | | Tk 8.4 may return different values than 8.3. This fix should handle either version. | ||||
* | Patch #749191: Delete commands in after_cancel. Will backport to 2.2. | Martin v. Löwis | 2003-06-07 | 1 | -0/+6 |
| | |||||
* | Convert tcl_version to str before comparing. Fixes #729317. | Martin v. Löwis | 2003-05-24 | 1 | -1/+2 |
| | |||||
* | Remove extra space in docstring | Neal Norwitz | 2003-04-17 | 1 | -1/+1 |
| | |||||
* | Add 'get' method to Variable and switch it from internal class to | Guido van Rossum | 2003-04-16 | 1 | -1/+7 |
| | | | | | standard class (it is now useful because it doesn't constrain the type of the value). | ||||
* | For StringVar results to strings. Document that boolean things are of | Martin v. Löwis | 2003-04-16 | 1 | -4/+7 |
| | | | | type bool. Requested in #721171. | ||||
* | SF patch #701494: more apply removals | Raymond Hettinger | 2003-04-06 | 1 | -275/+274 |
| | |||||
* | Patch #707701: Expect '??' in event fields. Fixes #698517. | Martin v. Löwis | 2003-03-29 | 1 | -16/+32 |
| | | | | Will backport to 2.2. | ||||
* | Convert booleans to integers in IntVar.set. Fixes #671741. | Martin v. Löwis | 2003-01-22 | 1 | -0/+6 |
| | | | | | Return booleans from _tkinter.getboolean. Convert booleans to Tcl booleans in AsObj. | ||||
* | Fix SF bug # 602259, 3rd parameter for Tkinter.scan_dragto | Neal Norwitz | 2003-01-10 | 1 | -3/+3 |
| | | | | Add the optional gain parameter and pass it to Tk. | ||||
* | Rename want_objects to wantobjects throughout, for consistency. | Martin v. Löwis | 2002-11-26 | 1 | -2/+2 |
| | |||||
* | Patch #518625: Return objects in Tkinter. | Martin v. Löwis | 2002-11-26 | 1 | -0/+3 |
| | |||||
* | Patch #621205: Tkinter updates for tk8.4. | Martin v. Löwis | 2002-10-13 | 1 | -26/+548 |
| | |||||
* | Patch #612602: Streamline configure methods. | Martin v. Löwis | 2002-10-10 | 1 | -79/+24 |
| | |||||
* | SF patch #581396, Canvas "select_item" always returns None | Neal Norwitz | 2002-07-23 | 1 | -1/+1 |
| | | | | Return the selected item, if there is any. | ||||
* | SF patch 546244 by John Williams: add Text.dump() method. | Guido van Rossum | 2002-04-23 | 1 | -1/+38 |
| | |||||
* | Ignore widgets with unknown names in winfo_children. Fixes #518283. | Martin v. Löwis | 2002-03-27 | 1 | -3/+11 |
| | | | | 2.2.2 candidate. | ||||
* | Move grid_location into Misc. Fixes bug #426892. | Martin v. Löwis | 2001-10-13 | 1 | -8/+8 |
| | |||||
* | Undo last checkin, since it duplicated the code. | Martin v. Löwis | 2001-10-01 | 1 | -25/+0 |
| | |||||
* | Patch #426880: Implement Listbox itemcget and itemconfigure. | Martin v. Löwis | 2001-10-01 | 1 | -0/+25 |
| | |||||
* | class Listbox: add itemcget, to satisfy SF patch #457713. | Guido van Rossum | 2001-09-05 | 1 | -1/+5 |
| | | | | Fix up docstring for itemconfigure. |