summaryrefslogtreecommitdiffstats
path: root/Lib/lib-tk
Commit message (Collapse)AuthorAgeFilesLines
* Patch #2167 from calvin: Remove unused importsChristian Heimes2008-02-231-1/+0
|
* 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.
* Make it a bit easier to test Tcl/Tk and idle from a build dir.Christian Heimes2007-12-181-0/+4
|
* Whitespace normalization.Tim Peters2007-01-301-2/+2
|
* Patch #1472877: Fix Tix subwidget name resolution.Martin v. Löwis2006-11-181-1/+4
| | | | Will backport to 2.5.
* Patch #1594554: Always close a tkSimpleDialog on ok(), evenMartin v. Löwis2006-11-181-3/+4
| | | | | if an exception occurs. Will backport to 2.5.
* Patch #1538878: Don't make tkSimpleDialog dialogs transient ifMartin v. Löwis2006-11-181-1/+6
| | | | | | the parent window is withdrawn. This mirrors what dialog.tcl does. Will backport to 2.5.
* Patch #1592250: Add elidge argument to Tkinter.Text.search.Martin v. Löwis2006-11-091-1/+2
|
* Patch #1351744: Add askyesnocancel helper for tkMessageBox.Martin v. Löwis2006-11-081-0/+10
|
* Fix turtle so that you can launch the demo2 function on its own instead of onlyBrett Cannon2006-10-161-1/+1
| | | | when the module is launched as a script.
* Fix docstring punctuationAndrew M. Kuchling2006-07-291-2/+2
|
* Patch #1524429: Use repr instead of backticks again.Martin v. Löwis2006-07-181-1/+1
|
* Whitespace normalization.v2.5b2Tim Peters2006-07-111-1/+1
|
* Patch #1519566: Remove unused _tofill member.Martin v. Löwis2006-07-101-12/+23
| | | | | Make begin_fill idempotent. Update demo2 to demonstrate filling of concave shapes.
* Whitespace normalization.Tim Peters2006-07-081-2/+2
|
* Bug #1514693: Update turtle's heading when switching betweenMartin v. Löwis2006-07-031-1/+6
| | | | degrees and radians.
* Reimplement turtle.circle using a polyline, to allow correctMartin v. Löwis2006-07-031-48/+14
| | | | filling of arcs. Also fixes #1514693.
* Only setup canvas when it is first created.Martin v. Löwis2006-07-031-1/+1
| | | | Fixes #1514703
* Fix end_fill().Georg Brandl2006-06-281-1/+1
|
* Whitespace normalization.Tim Peters2006-06-191-8/+8
|
* Fix typo in docstringNeal Norwitz2006-06-171-1/+1
|
* Patch #815924: Restore ability to pass type= and icon=Martin v. Löwis2006-06-171-3/+4
|
* Patch #812986: Update the canvas even if not tracing.Martin v. Löwis2006-06-171-0/+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.
* Normalized a few cases of whitespace in function declarations.Martin Blais2006-06-061-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 Peters2006-05-181-11/+11
|
* Patch #1486962: Several bugs in the turtle Tk demo module were fixedGeorg Brandl2006-05-171-18/+565
| | | | and several features added, such as speed and geometry control.
* Whitespace normalization.Tim Peters2006-04-161-10/+10
|
* Patch #1063914: Add clipboard_get.Martin v. Löwis2006-04-161-0/+17
|
* Patch #1468808: don't complain if Tkinter is already deleted at the time ↵Georg Brandl2006-04-121-1/+3
| | | | Font.__del__ is run.
* Whitespace normalization.Tim Peters2006-04-101-2/+2
|
* Patch #1462222: Fix Tix.Grid. Closes #1036406.Martin v. Löwis2006-04-101-11/+87
|
* Remove "disgusting hack" in favour of closure (patch #1462235)Georg Brandl2006-04-021-5/+2
|
* r903@spiff: Fredrik | 2005-11-12 16:28:37 +0100Fredrik Lundh2005-11-124-23/+2
| | | | removed outdated copyright notices (etc)
* Fix typos.Walter Dörwald2005-11-092-3/+3
|
* 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.
* Convert boolean results back to strings. Fixes #807871.Martin v. Löwis2004-09-181-1/+6
| | | | Will backport to 2.3.
* Remove debug print.Martin v. Löwis2004-08-201-1/+0
|
* Whitespace normalization.Tim Peters2004-08-201-4/+4
|
* Expand tabs.Martin v. Löwis2004-08-181-1/+1
|
* Patch #764217: Add nametofont function, exists parameter.Martin v. Löwis2004-08-181-6/+38
|
* Patch #986929: Add support for wish -sync and -use options.Martin v. Löwis2004-08-031-2/+3
|
* Wait for visibility before setting a grab. Fixes #946153.Martin v. Löwis2004-08-033-0/+3
|
* Whitespace normalization, via reindent.py.Tim Peters2004-07-183-15/+14
|
* Patch #911176: Move test function into __main__Martin v. Löwis2004-03-221-12/+12
|
* Patch #853488: Add hlist entry_configure and entry_cget methods.Martin v. Löwis2004-03-211-0/+11
|
* 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.