| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Issue #3767: Convert Tk object to string in tkColorChooser. | Martin v. Löwis | 2008-12-13 | 1 | -5/+7 |
| | | |||||
| * | Backport of r59654. | Martin v. Löwis | 2008-12-13 | 1 | -1/+1 |
| | | | | | Issue #4342: Always convert Text.index result to string. | ||||
| * | Issue 3248: Allow placing ScrolledText in a PanedWindow. | Martin v. Löwis | 2008-12-13 | 1 | -0/+3 |
| | | |||||
| * | Issue #3774: Fixed an error when create a Tkinter menu item without command | Hirokazu Yamamoto | 2008-11-03 | 1 | -11/+13 |
| | | | | | and then remove it. Written by Guilherme Polo (gpolo). Backport of r67082. | ||||
| * | #3968: fix missing update() call in end_fill(). | Georg Brandl | 2008-09-26 | 1 | -0/+1 |
| | | |||||
| * | #3969: fix typo in turtle.py. | Georg Brandl | 2008-09-26 | 1 | -1/+1 |
| | | |||||
| * | Issue #1342811: Fixed broken patch. | Robert Schuppenies | 2008-08-22 | 1 | -5/+7 |
| | | | | | Backport from trunk r65971. | ||||
| * | Issue #1342811: Fix leak in Tkinter.Menu.delete. Commands associated to | Robert Schuppenies | 2008-08-10 | 1 | -0/+10 |
| | | | | | | | menu entries were not deleted. Backport from trunk r65622. | ||||
| * | Issue #799428: Fix Tkinter.Misc._nametowidget to unwrap | Martin v. Löwis | 2008-08-02 | 1 | -9/+9 |
| | | | | | | Tcl command objects. Backport of r65399. | ||||
| * | Fix tkinter sequence passing. #2906. Backport from r63914. | Georg Brandl | 2008-06-03 | 1 | -1/+7 |
| | | |||||
| * | Backport r63776: tkinter fixes. | Georg Brandl | 2008-05-31 | 1 | -15/+19 |
| | | |||||
| * | Fix #1771558 (already fixed in trunk). | Georg Brandl | 2007-08-10 | 1 | -1/+1 |
| | | |||||
| * | Whitespace normalization | Neal Norwitz | 2007-04-25 | 1 | -2/+2 |
| | | |||||
| * | Patch #1472877: Fix Tix subwidget name resolution. | Martin v. Löwis | 2006-11-18 | 1 | -1/+4 |
| | | |||||
| * | Patch #1594554: Always close a tkSimpleDialog on ok(), even | Martin v. Löwis | 2006-11-18 | 1 | -3/+4 |
| | | | | | if an exception occurs. | ||||
| * | Patch #1538878: Don't make tkSimpleDialog dialogs transient if | Martin v. Löwis | 2006-11-18 | 1 | -1/+6 |
| | | | | | | the parent window is withdrawn. This mirrors what dialog.tcl does. | ||||
| * | Fix docstring punctuation | Andrew M. Kuchling | 2006-07-29 | 1 | -2/+2 |
| | | |||||
| * | Patch #1524429: Use repr instead of backticks again. | Martin v. Löwis | 2006-07-18 | 1 | -1/+1 |
| | | |||||
| * | Whitespace normalization.v2.5b2 | Tim Peters | 2006-07-11 | 1 | -1/+1 |
| | | |||||
| * | Patch #1519566: Remove unused _tofill member. | Martin v. Löwis | 2006-07-10 | 1 | -12/+23 |
| | | | | | | Make begin_fill idempotent. Update demo2 to demonstrate filling of concave shapes. | ||||
| * | Whitespace normalization. | Tim Peters | 2006-07-08 | 1 | -2/+2 |
| | | |||||
| * | Bug #1514693: Update turtle's heading when switching between | Martin v. Löwis | 2006-07-03 | 1 | -1/+6 |
| | | | | | degrees and radians. | ||||
| * | Reimplement turtle.circle using a polyline, to allow correct | Martin v. Löwis | 2006-07-03 | 1 | -48/+14 |
| | | | | | filling of arcs. Also fixes #1514693. | ||||
| * | Only setup canvas when it is first created. | Martin v. Löwis | 2006-07-03 | 1 | -1/+1 |
| | | | | | Fixes #1514703 | ||||
| * | Fix end_fill(). | Georg Brandl | 2006-06-28 | 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 #815924: Restore ability to pass type= and icon= | Martin v. Löwis | 2006-06-17 | 1 | -3/+4 |
| | | |||||
| * | Patch #812986: Update the canvas even if not tracing. | Martin v. Löwis | 2006-06-17 | 1 | -0/+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. | ||||
| * | Normalized a few cases of whitespace in function declarations. | Martin Blais | 2006-06-06 | 1 | -2/+2 |
| | | | | | | | | | | | | | Found them using:: find . -name '*.py' | while read i ; do grep 'def[^(]*( ' $i /dev/null ; done find . -name '*.py' | while read i ; do grep ' ):' $i /dev/null ; done (I was doing this all over my own code anyway, because I'd been using spaces in all defs, so I thought I'd make a run on the Python code as well. If you need to do such fixes in your own code, you can use xx-rename or parenregu.el within emacs.) | ||||
| * | Whitespace normalization. | Tim Peters | 2006-05-18 | 1 | -11/+11 |
| | | |||||
| * | Patch #1486962: Several bugs in the turtle Tk demo module were fixed | Georg Brandl | 2006-05-17 | 1 | -18/+565 |
| | | | | | and several features added, such as speed and geometry control. | ||||
| * | 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 |
| | | |||||
| * | Patch #1468808: don't complain if Tkinter is already deleted at the time ↵ | Georg Brandl | 2006-04-12 | 1 | -1/+3 |
| | | | | | Font.__del__ is run. | ||||
| * | Whitespace normalization. | Tim Peters | 2006-04-10 | 1 | -2/+2 |
| | | |||||
| * | Patch #1462222: Fix Tix.Grid. Closes #1036406. | Martin v. Löwis | 2006-04-10 | 1 | -11/+87 |
| | | |||||
| * | Remove "disgusting hack" in favour of closure (patch #1462235) | Georg Brandl | 2006-04-02 | 1 | -5/+2 |
| | | |||||
| * | r903@spiff: Fredrik | 2005-11-12 16:28:37 +0100 | Fredrik Lundh | 2005-11-12 | 4 | -23/+2 |
| | | | | | removed outdated copyright notices (etc) | ||||
| * | Fix typos. | Walter Dörwald | 2005-11-09 | 2 | -3/+3 |
| | | |||||
| * | 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. | ||||
| * | Convert boolean results back to strings. Fixes #807871. | Martin v. Löwis | 2004-09-18 | 1 | -1/+6 |
| | | | | | Will backport to 2.3. | ||||
| * | Remove debug print. | Martin v. Löwis | 2004-08-20 | 1 | -1/+0 |
| | | |||||
| * | Whitespace normalization. | Tim Peters | 2004-08-20 | 1 | -4/+4 |
| | | |||||
| * | Expand tabs. | Martin v. Löwis | 2004-08-18 | 1 | -1/+1 |
| | | |||||
| * | Patch #764217: Add nametofont function, exists parameter. | Martin v. Löwis | 2004-08-18 | 1 | -6/+38 |
| | | |||||
