mailr3313 - in /1.2: ./ 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:30:
Author: bugman
Date: Sun Jun 24 22:29:56 2007
New Revision: 3313

URL: http://svn.gna.org/viewcvs/relax?rev=3313&view=rev
Log:
Merged revisions 3312 via svnmerge from 
svn+ssh://bugman@xxxxxxxxxxx/svn/relax/1.3

........
  r3312 | bugman | 2007-06-24 22:27:17 +0200 (Sun, 24 Jun 2007) | 7 lines
  
  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.2/   (props changed)
    1.2/docs/latex/fetch_docstrings.py

Propchange: 1.2/
------------------------------------------------------------------------------
--- svnmerge-integrated (original)
+++ svnmerge-integrated Sun Jun 24 22:29:56 2007
@@ -1,1 +1,1 @@
-/1.3:1-2505,2941,2947,2950,2974,2976,2979,2984,2988,3076,3083-3084,3087,3117,3299,3309
+/1.3:1-2505,2941,2947,2950,2974,2976,2979,2984,2988,3076,3083-3084,3087,3117,3299,3309,3312

Modified: 1.2/docs/latex/fetch_docstrings.py
URL: 
http://svn.gna.org/viewcvs/relax/1.2/docs/latex/fetch_docstrings.py?rev=3313&r1=3312&r2=3313&view=diff
==============================================================================
--- 1.2/docs/latex/fetch_docstrings.py (original)
+++ 1.2/docs/latex/fetch_docstrings.py Sun Jun 24 22:29:56 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 Mon Jun 25 11:00:06 2007