Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Trac #19063: Simplify doctest
Browse files Browse the repository at this point in the history
Reviewer patch.
  • Loading branch information
cheuberg authored and mezzarobba committed Oct 15, 2015
1 parent ea906fd commit 5886d73
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/sage/rings/complex_ball_acb.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -737,13 +737,12 @@ cdef class ComplexBall(RingElement):
EXAMPLES::
sage: from sage.rings.complex_ball_acb import ComplexBallField
sage: CBF = ComplexBallField()
sage: from sage.rings.complex_ball_acb import CBF
sage: CBF(1/3)
[0.3333333333333333 +/- 7.04e-17]
sage: CBF(0, 1/3)
[0.3333333333333333 +/- 7.04e-17]*I
sage: ComplexBallField()(1/3, 1/6)
sage: CBF(1/3, 1/6)
[0.3333333333333333 +/- 7.04e-17] + [0.1666666666666667 +/- 7.04e-17]*I
TESTS::
Expand Down

0 comments on commit 5886d73

Please sign in to comment.