]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/GridHugeTable.py
Warning fixes and source cleaning.
[wxWidgets.git] / wxPython / demo / GridHugeTable.py
index e0fe1e415f222e41f8d61663cfd60f6a9f7ae2e8..cd5d2e258ef1f035644cc32e6cbe844658719bbc 100644 (file)
@@ -6,13 +6,6 @@ import  wx.grid as  gridlib
 
 class HugeTable(gridlib.PyGridTableBase):
 
-    """
-    This is all it takes to make a custom data table to plug into a
-    wxGrid.  There are many more methods that can be overridden, but
-    the ones shown below are the required ones.  This table simply
-    provides strings containing the row and column values.
-    """
-
     def __init__(self, log):
         gridlib.PyGridTableBase.__init__(self)
         self.log = log
@@ -27,6 +20,13 @@ class HugeTable(gridlib.PyGridTableBase):
         attr.IncRef()
         return attr
 
+
+    
+    # This is all it takes to make a custom data table to plug into a
+    # wxGrid.  There are many more methods that can be overridden, but
+    # the ones shown below are the required ones.  This table simply
+    # provides strings containing the row and column values.
+    
     def GetNumberRows(self):
         return 10000