summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_tcl.py
Commit message (Collapse)AuthorAgeFilesLines
* Tkinter rename reversal: remove tkinter package, adapt imports and docs.Georg Brandl2008-05-201-1/+1
|
* change some imports in tests so they will not be skipped in 3.0Benjamin Peterson2008-05-181-1/+1
|
* Make use of new str.startswith/endswith semantics.Georg Brandl2006-06-091-4/+2
| | | | Occurences in email and compiler were ignored due to backwards compat requirements.
* Stop test_tcl's testLoadTk from leaking the Tk commands 'loadtk' registers.Thomas Wouters2006-04-241-0/+1
|
* Have testLoadTkFailure() skip on cygwin since Tcl/Tk on cygwin renders to theBrett Cannon2004-11-241-1/+3
| | | | | | Windows GDI directly and thus does not need a DISPLAY environment variable. Thanks Jason Tishler.
* Whitespace normalization.Tim Peters2004-07-081-1/+1
|
* Fix test failure for test_tcl on OS/X and Windows if aDavid Ascher2004-03-261-7/+1
| | | | | | | | | | | version of Tcl other than ActiveTcl is installed (ActiveTcl included TclX, other Tcl distros didn't). I'm removing the package loading test because it's hard to come up with a package that is guaranteed to be in any Tcl installation. Special-casing darwin and windows is ok since that leaves the only Tk platform (X) which the test was trying to address.
* Cleanup: remove test file after it is used.Neal Norwitz2004-02-291-0/+1
|
* Get test to work when run from regrtest (add test_main), remove all CRs (^M)sNeal Norwitz2004-02-191-3/+5
|
* Implementation of patch 869468David Ascher2004-02-181-0/+159
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.