mirror of
https://github.com/python/cpython.git
synced 2026-01-06 07:22:09 +00:00
Issue #3015: _tkinter.create() now creates tkapp object with wantobject=1 by
default.
This commit is contained in:
parent
3fc6d80fb1
commit
9e7cbda1ef
2 changed files with 4 additions and 1 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue