mailr16622 - /branches/uf_redesign/gui/uf_objects.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on June 04, 2012 - 11:55:
Author: bugman
Date: Mon Jun  4 11:55:52 2012
New Revision: 16622

URL: http://svn.gna.org/viewcvs/relax?rev=16622&view=rev
Log:
Removed a now unused user function docstring parsing method.


Modified:
    branches/uf_redesign/gui/uf_objects.py

Modified: branches/uf_redesign/gui/uf_objects.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/uf_redesign/gui/uf_objects.py?rev=16622&r1=16621&r2=16622&view=diff
==============================================================================
--- branches/uf_redesign/gui/uf_objects.py (original)
+++ branches/uf_redesign/gui/uf_objects.py Mon Jun  4 11:55:52 2012
@@ -971,49 +971,6 @@
             wx.CallAfter(app.gui.controller.Raise)
 
 
-    def process_doc(self, doc):
-        """Process the documentation list.
-
-        @param doc:     The documentation in the form of a list of the title 
and description.
-        @type doc:      list of str
-        """
-
-        # The title.
-        yield doc[0], 'title'
-
-        # Strip the leading whitespace, if needed.
-        doc[1] = strip_lead(doc[1])
-
-        # Split up the description.
-        docstring_lines = split(doc[1], "\n")
-
-        # Initialise.
-        text = [""]
-        type = ['desc']
-        in_table = False
-
-        # Loop over the lines of the docstring.
-        for line in docstring_lines:
-            # Start of the table.
-            if not in_table and search('___', line):
-                in_table = True
-                text.append("")
-                type.append("table")
-
-            # Add the line to the text.
-            text[-1] = "%s%s\n" % (text[-1], line)
-
-            # End of the table.
-            if in_table and line == '':
-                in_table = False
-                text.append("")
-                type.append("desc")
-
-        # Yield the bits.
-        for i in range(len(text)):
-            yield text[i], type[i]
-
-
     def update_args(self):
         """Update all the argument ComboBox choices.
 




Related Messages


Powered by MHonArc, Updated Mon Jun 04 12:00:02 2012