Merged revisions 69217,69219 via svnmerge from
svn+ssh://pythondev/python/trunk
........
r69217 | guilherme.polo | 2009-02-02 19:08:32 -0200 (Mon, 02 Feb 2009) | 1 line
Fix for issue #1581476
........
r69219 | guilherme.polo | 2009-02-02 19:14:14 -0200 (Mon, 02 Feb 2009) | 1 line
NEWS entry for issue #1581476
........
diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c
index f101450..c1060f6 100644
--- a/Modules/_tkinter.c
+++ b/Modules/_tkinter.c
@@ -1284,8 +1284,7 @@
int objc, i;
PyObject *res = NULL;
TkappObject *self = (TkappObject*)selfptr;
- /* Could add TCL_EVAL_GLOBAL if wrapped by GlobalCall... */
- int flags = TCL_EVAL_DIRECT;
+ int flags = TCL_EVAL_DIRECT | TCL_EVAL_GLOBAL;
/* If args is a single tuple, replace with contents of tuple */
if (1 == PyTuple_Size(args)){