Commit 9e7cbda1 authored by Serhiy Storchaka's avatar Serhiy Storchaka

Issue #3015: _tkinter.create() now creates tkapp object with wantobject=1 by

default.
parent 3fc6d80f
......@@ -91,6 +91,9 @@ Core and Builtins
Library
-------
- Issue #3015: _tkinter.create() now creates tkapp object with wantobject=1 by
default.
- Issue #10203: sqlite3.Row now truly supports sequence protocol. In particulr
it supports reverse() and negative indices. Original patch by Claudiu Popa.
......
......@@ -2777,7 +2777,7 @@ Tkinter_Create(PyObject *self, PyObject *args)
try getting rid of it. */
char *className = NULL;
int interactive = 0;
int wantobjects = 0;
int wantobjects = 1;
int wantTk = 1; /* If false, then Tk_Init() doesn't get called */
int sync = 0; /* pass -sync to wish */
char *use = NULL; /* pass -use to wish */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment