Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
3cd346ae
Commit
3cd346ae
authored
Jul 19, 2012
by
Jesus Cea
Browse files
Options
Browse Files
Download
Plain Diff
MERGE: Closes #15396: memory leak in tkinter
parents
f4cc2161
ef86d129
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
Doc/ACKS.txt
Doc/ACKS.txt
+1
-0
Modules/_tkinter.c
Modules/_tkinter.c
+3
-1
No files found.
Doc/ACKS.txt
View file @
3cd346ae
...
@@ -121,6 +121,7 @@ docs@python.org), and we'll be glad to correct the problem.
...
@@ -121,6 +121,7 @@ docs@python.org), and we'll be glad to correct the problem.
* Thomas Lamb
* Thomas Lamb
* Detlef Lannert
* Detlef Lannert
* Piers Lauder
* Piers Lauder
* Julia Lawall
* Glyph Lefkowitz
* Glyph Lefkowitz
* Robert Lehmann
* Robert Lehmann
* Marc-André Lemburg
* Marc-André Lemburg
...
...
Modules/_tkinter.c
View file @
3cd346ae
...
@@ -3133,8 +3133,10 @@ PyInit__tkinter(void)
...
@@ -3133,8 +3133,10 @@ PyInit__tkinter(void)
PyDict_SetItemString
(
d
,
"TkappType"
,
(
PyObject
*
)
&
Tkapp_Type
);
PyDict_SetItemString
(
d
,
"TkappType"
,
(
PyObject
*
)
&
Tkapp_Type
);
if
(
PyType_Ready
(
&
Tktt_Type
)
<
0
)
if
(
PyType_Ready
(
&
Tktt_Type
)
<
0
)
{
Py_DECREF
(
m
);
return
NULL
;
return
NULL
;
}
PyDict_SetItemString
(
d
,
"TkttType"
,
(
PyObject
*
)
&
Tktt_Type
);
PyDict_SetItemString
(
d
,
"TkttType"
,
(
PyObject
*
)
&
Tktt_Type
);
Py_TYPE
(
&
PyTclObject_Type
)
=
&
PyType_Type
;
Py_TYPE
(
&
PyTclObject_Type
)
=
&
PyType_Type
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment