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

default.
This commit is contained in:
Serhiy Storchaka 2014-05-28 16:57:55 +03:00
parent 3fc6d80fb1
commit 9e7cbda1ef
2 changed files with 4 additions and 1 deletions

View file

@ -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.

View file

@ -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 */