Big dictionnary to fit in 79 cols, no backslash needed.

Gra [2009-04-23 08:15]
Big dictionnary to fit in 79 cols, no backslash needed.
Filename
tooltip.py
diff --git a/tooltip.py b/tooltip.py
index b4e8483..a8497d0 100644
--- a/tooltip.py
+++ b/tooltip.py
@@ -70,10 +70,22 @@ import Tkinter
 class ToolTip:
     def __init__(self, master, text='Your text here', delay=1500, **opts):
         self.master = master
-        self._opts = {'anchor':'center', 'bd':1, 'bg':'lightyellow', 'delay':delay, 'fg':'black',\
-                      'follow_mouse':0, 'font':None, 'justify':'left', 'padx':4, 'pady':2,\
-                      'relief':'solid', 'state':'normal', 'text':text, 'textvariable':None,\
-                      'width':0, 'wraplength':400}
+        self._opts = {'anchor':'center',
+                      'bd':1,
+                      'bg':'lightyellow',
+                      'delay':delay,
+                      'fg':'black',
+                      'follow_mouse':0,
+                      'font':None,
+                      'justify':'left',
+                      'padx':4,
+                      'pady':2,
+                      'relief':'solid',
+                      'state':'normal',
+                      'text':text,
+                      'textvariable':None,
+                      'width':0,
+                      'wraplength':400}
         self.configure(**opts)
         self._tipwindow = None
         self._id = None
ViewGit