# HG changeset patch
# User Nathann Cohen <nathann.cohen@gmail.com>
# Date 1359570873 -3600
# Node ID db31ef269511edc710202871e90b3ced66b20f76
# Parent 38f9fc50ac86292f242edd09659ea79450593686
Default parameters for Graph.plot() and Graph.show() -- docfix again
diff --git a/sage/graphs/generic_graph.py b/sage/graphs/generic_graph.py
a
|
b
|
|
14493 | 14493 | """ |
14494 | 14494 | Shows the (di)graph. |
14495 | 14495 | |
14496 | | For syntax and lengthy documentation, see method |
14497 | | :meth:`GenericGraph.plot`. Any options not used by plot will be passed |
14498 | | on to the Graphics.show method. |
| 14496 | INPUT: |
| 14497 | |
| 14498 | This method accepts any option understood by |
| 14499 | :meth:`~sage.graphs.generic_graph.plot` (graph-specific) or by |
| 14500 | :meth:`sage.plot.graphics.Graphics.show`. |
14499 | 14501 | |
14500 | 14502 | .. NOTE:: |
14501 | 14503 | |