Recorded merge of revisions 69195 via svnmerge from

svn+ssh://pythondev/python/trunk

........
  r69195 | guilherme.polo | 2009-02-01 22:38:54 -0200 (Sun, 01 Feb 2009) | 3 lines

  Use a single Tcl interpreter through all these tests, this may help some
  failing buildbots.
........
This commit is contained in:
Guilherme Polo 2009-02-02 01:02:20 +00:00
parent 995d4cdd62
commit 8ec5829910
4 changed files with 34 additions and 16 deletions

View file

@ -15,6 +15,14 @@ def get_tk_root():
return root
def root_deiconify():
root = get_tk_root()
root.deiconify()
def root_withdraw():
root = get_tk_root()
root.withdraw()
def simulate_mouse_click(widget, x, y):
"""Generate proper events to click at the x, y position (tries to act