Skip to content

Commit f1f8d41

Browse files
committed
Remove from table
1 parent 74b8298 commit f1f8d41

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

lib/matplotlib/markers.py

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,15 @@
4242
CARETLEFTBASE caretleft (centered at base)
4343
CARETRIGHTBASE caretright (centered at base)
4444
CARETUPBASE caretup (centered at base)
45-
`"None"`, None, `" "`, or `""` nothing
45+
`" "`, or `""` nothing
4646
``'$...$'`` render the string using mathtext.
4747
`verts` a list of (x, y) pairs used for Path vertices.
4848
The center of the marker is located at (0,0) and
49-
the size is normalized.
49+
the size is normalized. For backward
50+
compatibility, the form (`verts`, 0) is also
51+
accepted, but it is equivalent to just `verts`
52+
for giving a raw set of vertices that define the
53+
shape.
5054
path a `~matplotlib.path.Path` instance.
5155
(`numsides`, `style`, `angle`) The marker can also be a tuple (`numsides`,
5256
`style`, `angle`), which will create a custom,
@@ -71,9 +75,9 @@
7175
the angle of rotation of the symbol
7276
============================== ===============================================
7377
74-
For backward compatibility, the form (`verts`, 0) is also accepted,
75-
but it is equivalent to just `verts` for giving a raw set of vertices
76-
that define the shape.
78+
`None` is the default which often means 'nothing', however this table is
79+
referred to from other docs for the valid inputs from marker inputs and in
80+
those cases `None` still means 'default'.
7781
"""
7882

7983
from __future__ import (absolute_import, division, print_function,

0 commit comments

Comments
 (0)