changeset: 90878:c69e8ea3bf10 user: Serhiy Storchaka date: Wed May 28 16:57:55 2014 +0300 files: Misc/NEWS Modules/_tkinter.c description: Issue #3015: _tkinter.create() now creates tkapp object with wantobject=1 by default. diff -r 474c97a5f0c8 -r c69e8ea3bf10 Misc/NEWS --- a/Misc/NEWS Wed May 28 13:00:59 2014 +0300 +++ b/Misc/NEWS Wed May 28 16:57:55 2014 +0300 @@ -91,6 +91,9 @@ 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. diff -r 474c97a5f0c8 -r c69e8ea3bf10 Modules/_tkinter.c --- a/Modules/_tkinter.c Wed May 28 13:00:59 2014 +0300 +++ b/Modules/_tkinter.c Wed May 28 16:57:55 2014 +0300 @@ -2777,7 +2777,7 @@ 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 */