diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2004-08-20 06:19:23 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2004-08-20 06:19:23 (GMT) |
commit | cd4d297a239b3f1eb7f7b9e4d54733a8905a3a67 (patch) | |
tree | b683ac6012b952ecbd33039c7221112b60b358b5 | |
parent | a45cacfc1c4fb2b7b1b5c74e1f6b56d6ca2c9e4c (diff) | |
download | cpython-cd4d297a239b3f1eb7f7b9e4d54733a8905a3a67.zip cpython-cd4d297a239b3f1eb7f7b9e4d54733a8905a3a67.tar.gz cpython-cd4d297a239b3f1eb7f7b9e4d54733a8905a3a67.tar.bz2 |
Remove debug print.
-rw-r--r-- | Lib/lib-tk/tkFont.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/lib-tk/tkFont.py b/Lib/lib-tk/tkFont.py index 3979e99..afbc189 100644 --- a/Lib/lib-tk/tkFont.py +++ b/Lib/lib-tk/tkFont.py @@ -91,7 +91,6 @@ class Font: raise Tkinter._tkinter.TclError, "named font %s does not already exist" % (self.name,) # if font config info supplied, apply it if font: - print "font=%r" % font root.tk.call("font", "configure", self.name, *font) else: # create new font (raises TclError if the font exists) |