This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author terry.reedy
Recipients Anthony Sottile, miss-islington, taleinat, terry.reedy
Date 2021-01-25.11:39:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1611574746.73.0.672837513813.issue43013@roundup.psfhosted.org>
In-reply-to
Content
PR for 3. For 2.x, tkinter comprised several modules that became tkinter submodules. For 3.0, 'import tkOld' was replaced by 'import tkinter.new as tkOld', where 'new' is lowercase version of 'Old'.  Fix remaining instances of tkColorChooser, tkFileDialog, tkSimpleDialog, and tkMessageBox by replacing 'tkOld' with 'new' and import with 'from tkinter import new'.  Replace 'tkFont' with 'tkfont' instead of 'font' since 'font' is already used and leave import in 'as' form.  There are no remaining instances of SimpleDialog or tkCommonDialog.
History
Date User Action Args
2021-01-25 11:39:06terry.reedysetrecipients: + terry.reedy, taleinat, Anthony Sottile, miss-islington
2021-01-25 11:39:06terry.reedysetmessageid: <1611574746.73.0.672837513813.issue43013@roundup.psfhosted.org>
2021-01-25 11:39:06terry.reedylinkissue43013 messages
2021-01-25 11:39:06terry.reedycreate