diff options
author | Guilherme Polo <ggpolo@gmail.com> | 2009-01-28 14:41:10 (GMT) |
---|---|---|
committer | Guilherme Polo <ggpolo@gmail.com> | 2009-01-28 14:41:10 (GMT) |
commit | 5f2384857468552554bbf9414d1389cf62142ae1 (patch) | |
tree | 6e1e8dc45e86daa3a2df741e55f30a37214a0242 /Lib/tkinter/test/README | |
parent | 9844a1ffc3645a431ea9198e52214615e7752de7 (diff) | |
download | cpython-5f2384857468552554bbf9414d1389cf62142ae1.zip cpython-5f2384857468552554bbf9414d1389cf62142ae1.tar.gz cpython-5f2384857468552554bbf9414d1389cf62142ae1.tar.bz2 |
Merged revisions 69050 via svnmerge from
svn+ssh://pythondev/python/trunk
........
r69050 | guilherme.polo | 2009-01-28 11:09:03 -0200 (Wed, 28 Jan 2009) | 2 lines
Added the ttk module. See issue #2983: Ttk support for Tkinter.
........
Diffstat (limited to 'Lib/tkinter/test/README')
-rw-r--r-- | Lib/tkinter/test/README | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Lib/tkinter/test/README b/Lib/tkinter/test/README new file mode 100644 index 0000000..79cd16c --- /dev/null +++ b/Lib/tkinter/test/README @@ -0,0 +1,14 @@ +Writing new tests +================= + +Precaution +---------- + + New tests should always use only one Tk window at once, like all the + current tests do. This means that you have to destroy the current window + before creating another one, and clean up after the test. The motivation + behind this is that some tests may depend on having its window focused + while it is running to work properly, and it may be hard to force focus + on your window across platforms (right now only test_traversal at + test_ttk.test_widgets.NotebookTest depends on this). + |