summaryrefslogtreecommitdiffstats
path: root/Lib/tkinter/test/test_tkinter/test_variables.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #20368: The null character now correctly passed from Tcl to Python.Serhiy Storchaka2014-02-031-0/+18
| | | | Improved error handling in variables-related commands.
* Issue #20067: Tkinter variables now work when wantobjects is false.Serhiy Storchaka2013-12-261-6/+9
|
* Issue #15601: fix tkinter test_variables failure with OS X Aqua Tk 8.4Andrew Svetlov2012-08-091-2/+2
|
* Issue #1178863: Separate initialisation from setting when initializingMartin v. Löwis2012-03-131-0/+165
Tkinter.Variables; harmonize exceptions to ValueError; only delete variables that have not been deleted; assert that variable names are strings Patch by Andrew Svetlov.