Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fc6d80 commit 9e7cbdaCopy full SHA for 9e7cbda
2 files changed
Misc/NEWS
@@ -91,6 +91,9 @@ Core and Builtins
91
Library
92
-------
93
94
+- Issue #3015: _tkinter.create() now creates tkapp object with wantobject=1 by
95
+ default.
96
+
97
- Issue #10203: sqlite3.Row now truly supports sequence protocol. In particulr
98
it supports reverse() and negative indices. Original patch by Claudiu Popa.
99
Modules/_tkinter.c
@@ -2777,7 +2777,7 @@ Tkinter_Create(PyObject *self, PyObject *args)
2777
try getting rid of it. */
2778
char *className = NULL;
2779
int interactive = 0;
2780
- int wantobjects = 0;
+ int wantobjects = 1;
2781
int wantTk = 1; /* If false, then Tk_Init() doesn't get called */
2782
int sync = 0; /* pass -sync to wish */
2783
char *use = NULL; /* pass -use to wish */
0 commit comments