Skip to content

Commit 91ce26e

Browse files
author
Matthias Koeppe
committed
Massive modularization fixes
1 parent ab4bc60 commit 91ce26e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/sage/rings/padics/padic_base_generic.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -433,11 +433,11 @@ def plot(self, max_points=2500, **args):
433433
434434
EXAMPLES::
435435
436-
sage: Zp(3).plot()
436+
sage: Zp(3).plot() # optional - sage.plot
437437
Graphics object consisting of 1 graphics primitive
438-
sage: Zp(5).plot(max_points=625)
438+
sage: Zp(5).plot(max_points=625) # optional - sage.plot
439439
Graphics object consisting of 1 graphics primitive
440-
sage: Zp(23).plot(rgbcolor=(1,0,0))
440+
sage: Zp(23).plot(rgbcolor=(1,0,0)) # optional - sage.plot
441441
Graphics object consisting of 1 graphics primitive
442442
"""
443443
if 'pointsize' not in args:

0 commit comments

Comments
 (0)