mailr3312 - /1.3/docs/latex/fetch_docstrings.py


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

Header


Content

Posted by edward on June 24, 2007 - 22:27:
Author: bugman
Date: Sun Jun 24 22:27:17 2007
New Revision: 3312

URL: http://svn.gna.org/viewcvs/relax?rev=3312&view=rev
Log:
Fix for bug #9390 (https://gna.org/bugs/index.php?9390).

The problem was that the inspect.getargspec() function in Python 2.5 was 
failing on the Scientific
object located in the relax prompt namespace.  The simple solution was to add 
'Scientific' to the
blacklisted objects in the docstring fetching code.


Modified:
    1.3/docs/latex/fetch_docstrings.py

Modified: 1.3/docs/latex/fetch_docstrings.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/docs/latex/fetch_docstrings.py?rev=3312&r1=3311&r2=3312&view=diff
==============================================================================
--- 1.3/docs/latex/fetch_docstrings.py (original)
+++ 1.3/docs/latex/fetch_docstrings.py Sun Jun 24 22:27:17 2007
@@ -123,6 +123,7 @@
 
         # Skip these.
         self.blacklist.append('Numeric')
+        self.blacklist.append('Scientific')
         self.blacklist.append('pi')
         self.blacklist.append('script')
 




Related Messages


Powered by MHonArc, Updated Sun Jun 24 22:40:04 2007