summaryrefslogtreecommitdiffstats
path: root/Lib/lib-tk/Tkinter.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix closes Issue11439 - Handle the SVN Keywords in 2.7 by replacing them ↵Senthil Kumaran2011-07-281-1/+1
| | | | with a high number so that code relying on them does not break.
* #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-151-1/+1
|
* replace has_key with 'in' operatorBenjamin Peterson2009-10-091-13/+13
|
* replace callable()Benjamin Peterson2009-10-091-3/+3
|
* Clarifying Entry.selection_present's docstring.Guilherme Polo2009-08-141-1/+2
|
* Issue #1135: Add the XView and YView mix-ins to avoid duplicatingGuilherme Polo2009-08-141-89/+47
| | | | the xview* and yview* methods.
* Improved PanedWindow.add's docstring. 'subcomand' is a Tcl term, and the ↵Guilherme Polo2009-05-311-2/+2
| | | | possible options and values are the same accepted by paneconfigure (not configure).
* Fixed issue #5193: Guarantee that Tkinter.Text.search returns a string.Guilherme Polo2009-03-071-1/+1
|
* Issue #5341: Fix a variety of spelling errors.Mark Dickinson2009-02-211-1/+1
|
* Fixed issue #4890: Handle empty text search pattern inGuilherme Polo2009-02-091-2/+3
| | | | Tkinter.Text.search
* Issue #3774: Fixed an error when create a Tkinter menu item without commandHirokazu Yamamoto2008-11-031-11/+13
| | | | and then remove it. Written by Guilherme Polo (gpolo).
* Issue #1342811: Fixed broken patch. Reviewed by benjamin.peterson.Robert Schuppenies2008-08-221-5/+7
|
* Issue #1342811: Fix leak in Tkinter.Menu.delete. Commands associated toRobert Schuppenies2008-08-101-0/+10
| | | | menu entries were not deleted.
* Remove a use of callable() from Tkinter to silence warnings under -3.Brett Cannon2008-08-041-1/+1
|
* Issue #799428: Fix Tkinter.Misc._nametowidget to unwrapMartin v. Löwis2008-08-021-9/+9
| | | | Tcl command objects.
* remove usage of MacOS from TkinterBenjamin Peterson2008-07-311-10/+0
|
* Fix Tkinter sequence passing. #2906.Georg Brandl2008-06-031-1/+7
|
* #2906: accept lists for options, and some cosmetic fixes in Tkinter.Georg Brandl2008-05-291-15/+19
|
* #615772: raise a more explicit error from Tkinter.Misc.__contains__.Georg Brandl2008-05-201-0/+2
|
* Remove debugging line.Georg Brandl2008-05-201-1/+0
|
* Tkinter rename reversal: remove tkinter package, adapt imports and docs.Georg Brandl2008-05-201-9/+10
|
* Tkinter renaming reversal: move modules back in their place.Georg Brandl2008-05-201-0/+3757
|
* Tkinter renaming reversal: Delete all stubs from lib-tk.Georg Brandl2008-05-201-8/+0
|
* Tkinter rename, step 2: fix imports and add stub modules.Georg Brandl2008-05-161-0/+8
|
* Step 1 of Tkinter renaming: move lib-tk modules into a new "tkinter" package.Georg Brandl2008-05-161-3757/+0
|
* #2535: remove duplicated method.Georg Brandl2008-05-111-3/+0
|
* #2503 make singletons compared with "is" not == or !=Benjamin Peterson2008-03-291-1/+1
| | | | Thanks to Wummel for the patch
* Always convert Text.index result to string.Martin v. Löwis2008-01-011-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öwis2006-11-091-1/+2
|
* Patch #1524429: Use repr instead of backticks again.Martin v. Löwis2006-07-181-1/+1
|
* Whitespace normalization.Tim Peters2006-06-191-8/+8
|
* Fix typo in docstringNeal Norwitz2006-06-171-1/+1
|
* Patch #1494750: Destroy master after deleting children.Martin v. Löwis2006-06-171-1/+1
|
* Patch #1096231: Add default argument to wm_iconbitmap.Martin v. Löwis2006-06-171-3/+12
|
* Patch #763580: Add name and value arguments toMartin v. Löwis2006-06-171-19/+63
| | | | Tkinter variable classes.
* Whitespace normalization.Tim Peters2006-04-161-10/+10
|
* Patch #1063914: Add clipboard_get.Martin v. Löwis2006-04-161-0/+17
|
* Remove "disgusting hack" in favour of closure (patch #1462235)Georg Brandl2006-04-021-5/+2
|
* Fix typos.Walter Dörwald2005-11-091-1/+1
|
* Fix a problem in Tkinter introduced by SF patch #869468 (checked in asGuido van Rossum2005-07-261-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öwis2005-03-011-0/+7
| | | | Will backport to 2.4.
* Patch #986929: Add support for wish -sync and -use options.Martin v. Löwis2004-08-031-2/+3
|
* Whitespace normalization, via reindent.py.Tim Peters2004-07-181-1/+1
|
* Implementation of patch 869468David Ascher2004-02-181-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örwald2004-02-121-6/+6
| | | | From SF patch #852334.
* Fix SF bug #763637, 2.3b2 unpack tuple of wrong size in after_cancelNeal Norwitz2003-07-011-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öwis2003-06-071-0/+6
|
* Convert tcl_version to str before comparing. Fixes #729317.Martin v. Löwis2003-05-241-1/+2
|
* Remove extra space in docstringNeal Norwitz2003-04-171-1/+1
|
* Add 'get' method to Variable and switch it from internal class toGuido van Rossum2003-04-161-1/+7
| | | | | standard class (it is now useful because it doesn't constrain the type of the value).