diff options
author | Guilherme Polo <ggpolo@gmail.com> | 2009-02-02 21:08:32 +0000 |
---|---|---|
committer | Guilherme Polo <ggpolo@gmail.com> | 2009-02-02 21:08:32 +0000 |
commit | 23fe2a867b91ab1df9aadf6f0ba6af729175b15f (patch) | |
tree | c5ebd1ea4e42abf1a7ef98ffc28f36ec8dce6f47 /Modules/_tkinter.c | |
parent | b98cb43e4a4d374dde9d7aa665ee88a6d0edd6b9 (diff) | |
download | cpython-git-23fe2a867b91ab1df9aadf6f0ba6af729175b15f.tar.gz |
Fix for issue #1581476
Diffstat (limited to 'Modules/_tkinter.c')
-rw-r--r-- | Modules/_tkinter.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c index 6e89f2f9c3..8b56bcd0dc 100644 --- a/Modules/_tkinter.c +++ b/Modules/_tkinter.c @@ -1284,8 +1284,7 @@ Tkapp_Call(PyObject *selfptr, PyObject *args) 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)){ |