bpo-36152: IDLE: Remove unused parameter from colorizer (GH-12109)

Remove colorizer.ColorDelegator.close_when_done and the corresponding argument of .close().  In IDLE, both have always been None or False since 2007.
This commit is contained in:
Cheryl Sabella 2019-03-01 05:19:40 -05:00 committed by GitHub
parent d60a79a101
commit b9f0354efc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 18 deletions

View file

@ -1033,7 +1033,7 @@ class EditorWindow(object):
self.io = None
self.undo = None
if self.color:
self.color.close(False)
self.color.close()
self.color = None
self.text = None
self.tkinter_vars = None