mailr5152 - /1.3/float.py


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

Header


Content

Posted by edward on March 22, 2008 - 22:08:
Author: bugman
Date: Sat Mar 22 22:08:39 2008
New Revision: 5152

URL: http://svn.gna.org/viewcvs/relax?rev=5152&view=rev
Log:
Converted the copySign() docstring to epydoc format.


Modified:
    1.3/float.py

Modified: 1.3/float.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/float.py?rev=5152&r1=5151&r2=5152&view=diff
==============================================================================
--- 1.3/float.py (original)
+++ 1.3/float.py Sat Mar 22 22:08:39 2008
@@ -2,6 +2,7 @@
 #                                                                            
 #
 # Copyright (C) 2006  Gary S Thompson (see https://gna.org/users for contact 
 #
 #                                      details)                              
 #
+# Copyright (C) 2008 Edward d'Auvergne                                       
 #
 #                                                                            
 #
 # This file is part of the program relax.                                    
 #
 #                                                                            
 #
@@ -381,17 +382,17 @@
 
 
 def copySign(fromNumber,toDouble):
-    ''' copy the sign bit from one python float  to another
-
-        this function is class agnostic the sign bit can be copied freely 
between
-        ordinarys floats nans and +/-inf
-
-        fromDouble --  the python float to copy the sign bit from
-        toDouble --  the python float to copy the sign bit to
-
-        throws -- throws a TypeError if toDouble isn't a python float or if
-                    fromNumber can't be converted to a float
-
+    '''Copy the sign bit from one python float to another.
+
+    This function is class agnostic the sign bit can be copied freely between
+    ordinarys floats nans and +/-inf.
+
+    @param fromDouble:  The python float to copy the sign bit from.
+    @type fromDouble:   float
+    @param toDouble:    The python float to copy the sign bit to.
+    @type toDouble:     float
+    @raises:            Throws a TypeError if toDouble isn't a python float 
or if fromNumber can't
+                        be converted to a float.
     '''
 
     #convert first number to a float so as to use facilities




Related Messages


Powered by MHonArc, Updated Sat Mar 22 22:20:09 2008