Home
last modified time | relevance | path

Searched refs:tkfont (Results 1 – 2 of 2) sorted by relevance

/third_party/python/Lib/idlelib/
Dhelp.py33 from tkinter import font as tkfont unknown
202 if name.lower() in (x.lower() for x in tkfont.names(root=self)):
203 font = tkfont.Font(name=name, exists=True, root=self)
206 for x in tkfont.families(root=self)):
Dconfigdialog.py23 import tkinter.font as tkfont namespace
398 fonts = sorted(set(tkfont.families(self)))
452 font_weight = tkfont.BOLD if self.font_bold.get() else tkfont.NORMAL