8000 DOC shapes and collections is fully SG compatible by NelleV · Pull Request #8310 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

DOC shapes and collections is fully SG compatible #8310

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 17, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
DOC shapes and collections is fully SG compatible
  • Loading branch information
NelleV committed Mar 16, 2017
commit d5392708a5bf939d91eb3c03a3bf40fde7a6985a
2 changes: 1 addition & 1 deletion doc/users/screenshots.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Path demo
You can add arbitrary paths in matplotlib using the
:mod:`matplotlib.path` module:

.. plot:: mpl_examples/shapes_and_collections/path_patch_demo.py
.. plot:: mpl_examples/shapes_and_collections/plot_path_patch.py

.. _screenshots_mplot3d_surface:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
================
PathPatch object
================

This example shows how to create `Path`\s and `PathPatch` objects through
Matplotlib's API.
"""
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

do we need blank lines around this?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am not sure I understand the question. If you are asking about the need for blanklines around """, then the answer is no.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK sweet 👍

import matplotlib.path as mpath
import matplotlib.patches as mpatches
Expand Down
2 changes: 1 addition & 1 deletion lib/matplotlib/axes/_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -3914,7 +3914,7 @@ def scatter(self, x, y, s=None, c=None, marker=None, cmap=None, norm=None,

Examples
--------
.. plot:: mpl_examples/shapes_and_collections/scatter_demo.py
.. plot:: mpl_examples/shapes_and_collections/plot_scatter.py

"""

Expand Down
0