Index: sage/matrix/matrix2.pyx
===================================================================
--- sage/matrix/matrix2.pyx	(revision 5496)
+++ sage/matrix/matrix2.pyx	(revision 5493)
@@ -1299,7 +1299,8 @@
             sage: m = Matrix(Integers(5),2,2,[2,2,2,2]);
             sage: m.row_space()
-            Vector space of degree 2 and dimension 1 over Ring of integers modulo 5
+            Vector space of degree 2 and dimension 1 over Fraction Field of Ring of integers modulo 5
             Basis matrix:
             [1 1]
+            
         """
         return self.row_module(base_ring=base_ring)
Index: sage/modular/modform/numerical.py
===================================================================
--- sage/modular/modform/numerical.py	(revision 5494)
+++ sage/modular/modform/numerical.py	(revision 4249)
@@ -162,11 +162,11 @@
         EXAMPLES:
             sage: n = numerical_eigenforms(37)
-            sage: n._easy_vector()                 # slightly random output
+            sage: n._easy_vector()
             (1.0, 1.0, 0)
             sage: n = numerical_eigenforms(43)
-            sage: n._easy_vector()                 # slightly random output
+            sage: n._easy_vector()
             (1.0, 0, 1.0, 0)
             sage: n = numerical_eigenforms(125)
-            sage: n._easy_vector()                 # slightly random output
+            sage: n._easy_vector()
             (0, 0, 0, 1.0, 0, 0, 0, 0, 0, 0, 0, 0, 0)
         """
Index: sage/structure/coerce.pxi
===================================================================
--- sage/structure/coerce.pxi	(revision 5465)
+++ sage/structure/coerce.pxi	(revision 5497)
@@ -38,8 +38,7 @@
     if PY_TYPE_CHECK(x,Element):
         return (<Element>x)._parent
-    try:
-        # TODO: should the _parent attribute be moved up the tree?
+    elif hasattr(x, 'parent'):
         return x.parent()
-    except AttributeError:
+    else:
         return <object>PY_TYPE(x)
 
Index: sage/structure/element.pyx
===================================================================
--- sage/structure/element.pyx	(revision 5496)
+++ sage/structure/element.pyx	(revision 5488)
@@ -829,5 +829,5 @@
     
     cdef ModuleElement _rmul_nonscalar_c(right, left):
-        if HAS_DICTIONARY(right):
+        if HAS_DICTIONARY(right): 
             return right._rmul_nonscalar(left)
         else:
Index: sage/version.py
===================================================================
--- sage/version.py	(revision 5495)
+++ sage/version.py	(revision 5458)
@@ -1,2 +1,2 @@
 """nodoctests"""
-version='2.7.alpha6'; date='2007-07-24'
+version='2.7.1.alpha5'; date='2007-07-23'
