summaryrefslogtreecommitdiffstats
path: root/Doc/library/tkinter.ttk.rst
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2009-09-13 08:13:21 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2009-09-13 08:13:21 (GMT)
commit713e042152c3e554157293180f1407aea7446ae9 (patch)
tree39d8fe21e6d60787c61dfc28c85394d0a6428e58 /Doc/library/tkinter.ttk.rst
parentf388053649111e08ac213c0073cc60f02790351a (diff)
downloadcpython-713e042152c3e554157293180f1407aea7446ae9.zip
cpython-713e042152c3e554157293180f1407aea7446ae9.tar.gz
cpython-713e042152c3e554157293180f1407aea7446ae9.tar.bz2
Merged revisions 74764 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r74764 | ezio.melotti | 2009-09-13 10:54:02 +0300 (Sun, 13 Sep 2009) | 1 line 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])