def Show(self, show, attr):
         """ Show or hide the edit control.  Use the attr (if not None)
             to set colors or fonts for the control.
+            NOTE: There is no need to everride this if you don't need
+                  to do something out of the ordingary.
         """
         self.base_Show(show, attr)
 
         """ Draws the part of the cell not occupied by the edit control.  The
             base class version just fills it with background colour from the
             attribute.
+            NOTE: There is no need to everride this if you don't need
+                  to do something out of the ordingary.
         """
         # Call base class method.
         self.base_PaintBackground(self, rect, attr)
         pass
 
     def Destroy(self):
-        """ Final cleanup """
+        """ Final cleanup
+            NOTE: There is no need to everride this if you don't need
+                  to do something out of the ordingary.
+        """
         self.base_Destroy()
 
     def Clone(self):