]> granicus.if.org Git - python/commitdiff
Whitespace normalization.
authorTim Peters <tim.peters@gmail.com>
Mon, 19 Jun 2006 07:45:16 +0000 (07:45 +0000)
committerTim Peters <tim.peters@gmail.com>
Mon, 19 Jun 2006 07:45:16 +0000 (07:45 +0000)
Lib/lib-tk/Tkinter.py
Lib/test/test_support.py

index badc40a2cd3ebb3a88c27dc5c0821790de17a06e..a69d4db14fb83143fc0d7cdadf4bd2b7d5d8a65b 100644 (file)
@@ -170,11 +170,11 @@ class Variable:
     _default = ""
     def __init__(self, master=None, value=None, name=None):
         """Construct a variable
-        
+
         MASTER can be given as master widget.
         VALUE is an optional value (defaults to "")
         NAME is an optional Tcl name (defaults to PY_VARnum).
-         
+
         If NAME matches an existing variable and VALUE is omitted
         then the existing value is retained.
         """
@@ -231,7 +231,7 @@ class Variable:
             self._tk.call("trace", "vinfo", self._name)))
     def __eq__(self, other):
         """Comparison for equality (==).
-        
+
         Note: if the Variable's master matters to behavior
         also compare self._master == other._master
         """
@@ -247,7 +247,7 @@ class StringVar(Variable):
         MASTER can be given as master widget.
         VALUE is an optional value (defaults to "")
         NAME is an optional Tcl name (defaults to PY_VARnum).
-        
+
         If NAME matches an existing variable and VALUE is omitted
         then the existing value is retained.
         """
@@ -269,7 +269,7 @@ class IntVar(Variable):
         MASTER can be given as master widget.
         VALUE is an optional value (defaults to 0)
         NAME is an optional Tcl name (defaults to PY_VARnum).
-        
+
         If NAME matches an existing variable and VALUE is omitted
         then the existing value is retained.
         """
@@ -294,7 +294,7 @@ class DoubleVar(Variable):
         MASTER can be given as master widget.
         VALUE is an optional value (defaults to 0.0)
         NAME is an optional Tcl name (defaults to PY_VARnum).
-        
+
         If NAME matches an existing variable and VALUE is omitted
         then the existing value is retained.
         """
@@ -313,7 +313,7 @@ class BooleanVar(Variable):
         MASTER can be given as master widget.
         VALUE is an optional value (defaults to False)
         NAME is an optional Tcl name (defaults to PY_VARnum).
-        
+
         If NAME matches an existing variable and VALUE is omitted
         then the existing value is retained.
         """
@@ -1504,7 +1504,7 @@ class Wm:
         """Set bitmap for the iconified widget to BITMAP. Return
         the bitmap if None is given.
 
-        Under Windows, the DEFAULT parameter can be used to set the icon 
+        Under Windows, the DEFAULT parameter can be used to set the icon
         for the widget and any descendents that don't have an icon set
         explicitly.  DEFAULT can be the relative path to a .ico file
         (example: root.iconbitmap(default='myicon.ico') ).  See Tk
index 2a749386a5a509dc998de0d2976903a88f6039f5..8e315496ee1292f5e4a02cfadd74c193a9619e4c 100644 (file)
@@ -475,4 +475,3 @@ def threading_cleanup(num_active, num_limbo):
     while len(threading._limbo) != num_limbo and count < _MAX_COUNT:
         count += 1
         time.sleep(0.1)
-