[Python-checkins] cpython: Remove extra spaces in doc example.

andrew.svetlov python-checkins at python.org
Sun Mar 25 10:45:32 CEST 2012


http://hg.python.org/cpython/rev/7d8339083cb3
changeset:   75922:7d8339083cb3
user:        Andrew Svetlov <andrew.svetlov at gmail.com>
date:        Sun Mar 25 11:44:59 2012 +0300
summary:
  Remove extra spaces in doc example.

files:
  Doc/library/tkinter.rst |  6 +++---
  1 files changed, 3 insertions(+), 3 deletions(-)


diff --git a/Doc/library/tkinter.rst b/Doc/library/tkinter.rst
--- a/Doc/library/tkinter.rst
+++ b/Doc/library/tkinter.rst
@@ -193,9 +193,9 @@
             self.hi_there["command"] = self.say_hi
             self.hi_there.pack(side="top")
 
-            self.QUIT = tk.Button(self, text = "QUIT", fg = "red",
-                                                command = root.destroy)
-            self.QUIT.pack(side = "bottom")
+            self.QUIT = tk.Button(self, text="QUIT", fg="red",
+                                                command=root.destroy)
+            self.QUIT.pack(side="bottom")
 
         def say_hi(self):
             print("hi there, everyone!")

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list