[issue42122] macOS complains about how fonts are accessed

Terry J. Reedy report at bugs.python.org
Thu Oct 22 21:48:22 EDT 2020


Terry J. Reedy <tjreedy at udel.edu> added the comment:

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)

----------
assignee: terry.reedy -> 
components: +Tkinter, macOS -IDLE
nosy: +ned.deily, ronaldoussoren
title: IDLE complains about how fonts are accessed -> macOS complains about how fonts are accessed

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue42122>
_______________________________________


More information about the Python-bugs-list mailing list