commit | ef87d6ed94780fe00250a551031023aeb2898365 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Wed May 02 19:09:54 2007 +0000 |
committer | Guido van Rossum <guido@python.org> | Wed May 02 19:09:54 2007 +0000 |
tree | 1f8989aaaec7ec5f8b2f26498317f2022bf85531 | |
parent | 572dbf8f1320c0b34b9c786e5c30ba4a4b61b292 [diff] [blame] |
Rip out all the u"..." literals and calls to unicode().
diff --git a/Lib/lib-tk/Tkinter.py b/Lib/lib-tk/Tkinter.py index 7753f2d..248a702 100644 --- a/Lib/lib-tk/Tkinter.py +++ b/Lib/lib-tk/Tkinter.py
@@ -3736,7 +3736,7 @@ text = "This is Tcl/Tk version %s" % TclVersion if TclVersion >= 8.1: try: - text = text + unicode("\nThis should be a cedilla: \347", + text = text + str("\nThis should be a cedilla: \347", "iso-8859-1") except NameError: pass # no unicode support