summaryrefslogtreecommitdiffstats
path: root/Doc/library/tkinter.ttk.rst
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2009-09-13 07:54:02 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2009-09-13 07:54:02 (GMT)
commit985e24dcf7368894f945c360c383059a21b1ba0b (patch)
tree4736769c0e526b53c8a98c3dfd213e5bf9c89bb1 /Doc/library/tkinter.ttk.rst
parentb5845056da831ee3bad9400d5fe9dcd88f9ae534 (diff)
downloadcpython-985e24dcf7368894f945c360c383059a21b1ba0b.zip
cpython-985e24dcf7368894f945c360c383059a21b1ba0b.tar.gz
cpython-985e24dcf7368894f945c360c383059a21b1ba0b.tar.bz2
fixed more examples that were using u"", print without () and unicode/str instead of str/bytes
Diffstat (limited to 'Doc/library/tkinter.ttk.rst')
-rw-r--r--Doc/library/tkinter.ttk.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/tkinter.ttk.rst b/Doc/library/tkinter.ttk.rst
index 3390d13..4b83794 100644
--- a/Doc/library/tkinter.ttk.rst
+++ b/Doc/library/tkinter.ttk.rst
@@ -1228,7 +1228,7 @@ option. If you don't know the class name of a widget, use the method
from tkinter import ttk
- print ttk.Style().lookup("TButton", "font")
+ print(ttk.Style().lookup("TButton", "font"))
.. method:: layout(style[, layoutspec=None])