mailr18346 - /trunk/extern/scientific_python/Geometry/Transformation.py


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

Header


Content

Posted by edward on February 01, 2013 - 12:42:
Author: bugman
Date: Fri Feb  1 12:42:22 2013
New Revision: 18346

URL: http://svn.gna.org/viewcvs/relax?rev=18346&view=rev
Log:
Python 3 print statement fixes for the Geometry.Transformation 
ScientificPython module.


Modified:
    trunk/extern/scientific_python/Geometry/Transformation.py

Modified: trunk/extern/scientific_python/Geometry/Transformation.py
URL: 
http://svn.gna.org/viewcvs/relax/trunk/extern/scientific_python/Geometry/Transformation.py?rev=18346&r1=18345&r2=18346&view=diff
==============================================================================
--- trunk/extern/scientific_python/Geometry/Transformation.py (original)
+++ trunk/extern/scientific_python/Geometry/Transformation.py Fri Feb  1 
12:42:22 2013
@@ -549,7 +549,7 @@
                            Geometry.Vector(0., 1., 0.),
                            Geometry.Vector(0., 0., 1.))
     c = t*r
-    print c.screwMotion()
+    print(c.screwMotion())
     s = Scaling(2.)
     all = s*t*r
-    print all(Geometry.ex)
+    print(all(Geometry.ex))




Related Messages


Powered by MHonArc, Updated Fri Feb 01 13:00:02 2013