Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | 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 | |
| | ||||||
* | Patch #986929: Add support for wish -sync and -use options. | Martin v. Löwis | 2004-08-03 | 1 | -2/+3 | |
| | ||||||
* | Wait for visibility before setting a grab. Fixes #946153. | Martin v. Löwis | 2004-08-03 | 3 | -0/+3 | |
| | ||||||
* | Whitespace normalization, via reindent.py. | Tim Peters | 2004-07-18 | 3 | -15/+14 | |
| | ||||||
* | Patch #911176: Move test function into __main__ | Martin v. Löwis | 2004-03-22 | 1 | -12/+12 | |
| | ||||||
* | Patch #853488: Add hlist entry_configure and entry_cget methods. | Martin v. Löwis | 2004-03-21 | 1 | -0/+11 | |
| | ||||||
* | 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 | 4 | -14/+14 | |
| | | | | From SF patch #852334. | |||||
* | Convert path objects to strings in askdirectory. Fixes #852314. | Martin v. Löwis | 2003-12-01 | 1 | -0/+6 | |
| | | | | Backported to 2.3. | |||||
* | Patch #805976: Add DOTBOX and UNDERLINE. | Martin v. Löwis | 2003-09-20 | 1 | -0/+5 | |
| | ||||||
* | Add HIDDEN. Fixes #777664. | Martin v. Löwis | 2003-08-09 | 1 | -0/+2 | |
| | ||||||
* | 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. | |||||
* | Add a missing 'self,' to a super call in recently checked-in code. | Guido van Rossum | 2003-06-15 | 1 | -1/+1 | |
| | | | | This was reported in the IDLEFORK bug tracker as #754971. | |||||
* | Patch #751107: Slant must be 'roman', not 'normal'. | Martin v. Löwis | 2003-06-14 | 1 | -1/+2 | |
| | ||||||
* | Properly deal with tuples in Open._fixresult. Fixes bug reported in | Martin v. Löwis | 2003-06-14 | 1 | -3/+16 | |
| | | | | follow-up to #621891. | |||||
* | SF bug #685773: 2 (more) bugs in turtle | Raymond Hettinger | 2003-06-09 | 1 | -0/+1 | |
| | | | | | | | The docs recommend filling by fill(1), drawing commands, fill(0). However, the filling did not actually take place until the next draw command. Fixed by issuing a null draw command at the end of the fill method. | |||||
* | 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 | 11 | -364/+349 | |
| | ||||||
* | Patch #707701: Expect '??' in event fields. Fixes #698517. | Martin v. Löwis | 2003-03-29 | 1 | -16/+32 | |
| | | | | Will backport to 2.2. | |||||
* | SF patch 672098: Three __contains__ implementations | Raymond Hettinger | 2003-01-30 | 1 | -0/+2 | |
| | | | | Contributed by Jp Calderone. | |||||
* | 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. |