From 8fd86cc46e0f056bd8af5dfe4c6ad1a30af453d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Mon, 19 May 2003 19:57:42 +0000 Subject: [PATCH] Only return objects if wantobjects is set in GetVar. --- Modules/_tkinter.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c index 288ed153e97..fbc6ec10c9b 100644 --- a/Modules/_tkinter.c +++ b/Modules/_tkinter.c @@ -1647,7 +1647,12 @@ GetVar(PyObject *self, PyObject *args, int flags) ENTER_TCL tres = Tcl_GetVar2Ex(Tkapp_Interp(self), name1, name2, flags); ENTER_OVERLAP - res = FromObj(self, tres); + if (((TkappObject*)self)->wantobjects) { + res = FromObj(self, tres); + } + else { + res = PyString_FromString(Tcl_GetString(tres)); + } LEAVE_OVERLAP_TCL return res; }