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 ned.deily, rhettinger, ronaldoussoren, terry.reedy
Date 2020-10-23.01:48:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1603417702.14.0.867053362749.issue42122@roundup.psfhosted.org>
In-reply-to
Content
I am sure that this is yet another macOS Catalina+ tcl/tk problem.  3.10 is fine on Mohave.  Those complaints must come from macOS in response to 'Client' tk requests.  IDLE and tkinter do not use those names.  If you want to try to see what tkinter function triggers those messages, try the following in the Python REPL.

import tkinter as tk
from tkinter import font
root = tk.Tk()
fnames = font.names(root)
f1 = font.Font(root=root, name=fnames[0], exists=True)
f2 = font.Font(root=root, name='TkFixedFont', exists=True)
History
Date User Action Args
2020-10-23 01:48:22terry.reedysetrecipients: + terry.reedy, rhettinger, ronaldoussoren, ned.deily
2020-10-23 01:48:22terry.reedysetmessageid: <1603417702.14.0.867053362749.issue42122@roundup.psfhosted.org>
2020-10-23 01:48:22terry.reedylinkissue42122 messages
2020-10-23 01:48:21terry.reedycreate