# HG changeset patch
# User Paul Zimmermann <zimmerma@loria.fr>
# Date 1333436149 -7200
# Node ID 85ab72f8d735dea7f548f595254fd24bdeddf094
# Parent  9835f611f28d5e0528e4f34fbdf7d7f805f76823
#8720: new patch for sage-5.0.beta11

diff --git a/sage/matrix/constructor.py b/sage/matrix/constructor.py
--- a/sage/matrix/constructor.py
+++ b/sage/matrix/constructor.py
@@ -1073,7 +1073,7 @@
         sage: A = random_matrix(ComplexField(32), 3, density=0.8, sparse=True); A
         [                 0.000000000  0.399739209 + 0.909948633*I                  0.000000000]
         [-0.361911424 - 0.455087671*I -0.687810605 + 0.460619713*I  0.625520058 - 0.360952012*I]
-        [                 0.000000000                  0.000000000     62196416 - 0.193242896*I]
+        [                 0.000000000                  0.000000000 -0.162196416 - 0.193242896*I]
         sage: A.is_sparse()
         True
 
diff --git a/sage/matrix/matrix_space.py b/sage/matrix/matrix_space.py
--- a/sage/matrix/matrix_space.py
+++ b/sage/matrix/matrix_space.py
@@ -1315,8 +1315,8 @@
             sage: MS = MatrixSpace(CC,2,1)
             sage: F = NumberField(x^2+1, name='x')
             sage: MS([F(1),F(0)])
-            [1.00000000000000]
-            [               0]
+            [ 1.00000000000000]
+            [0.000000000000000]
 
         """
         if x is None or x==0:
diff --git a/sage/plot/hyperbolic_arc.py b/sage/plot/hyperbolic_arc.py
--- a/sage/plot/hyperbolic_arc.py
+++ b/sage/plot/hyperbolic_arc.py
@@ -41,7 +41,7 @@
          sage: from sage.plot.hyperbolic_arc import HyperbolicArc
         
          sage: print HyperbolicArc(0, 1/2+I*sqrt(3)/2, {})
-         Hyperbolic arc (0, 0.500000000000000 + 0.866025403784439*I)
+         Hyperbolic arc (0.000000000000000, 0.500000000000000 + 0.866025403784439*I)
     """
     
     def __init__(self, A, B, options):
diff --git a/sage/plot/hyperbolic_triangle.py b/sage/plot/hyperbolic_triangle.py
--- a/sage/plot/hyperbolic_triangle.py
+++ b/sage/plot/hyperbolic_triangle.py
@@ -42,7 +42,7 @@
 
          sage: from sage.plot.hyperbolic_triangle import HyperbolicTriangle
          sage: print HyperbolicTriangle(0, 1/2, I, {})
-         Hyperbolic triangle (0, 0.500000000000000, 1.00000000000000*I)
+         Hyperbolic triangle (0.000000000000000, 0.500000000000000, 1.00000000000000*I)
     """
     def __init__(self, A, B, C, options):
         """
@@ -52,7 +52,7 @@
         
             sage: from sage.plot.hyperbolic_triangle import HyperbolicTriangle
             sage: print HyperbolicTriangle(0, 1/2, I, {})
-            Hyperbolic triangle (0, 0.500000000000000, 1.00000000000000*I)
+            Hyperbolic triangle (0.000000000000000, 0.500000000000000, 1.00000000000000*I)
         """
         A, B, C = (CC(A), CC(B), CC(C))
         self.path = []
