Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1c555f9

Browse files
committed
fixed a doc error in patches
svn path=/trunk/matplotlib/; revision=5434
1 parent 3517bb1 commit 1c555f9

4 files changed

Lines changed: 21 additions & 6 deletions

File tree

doc/api/axes_api.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
***************
2+
matplotlib axes
3+
***************
4+
5+
6+
:mod:`matplotlib.axes`
7+
======================
8+
9+
.. automodule:: matplotlib.axes
10+
:members:
11+
:undoc-members:

doc/faq/environment_variables_faq.rst

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,13 @@
44
Environment Variables
55
*********************
66

7-
.. envvar:: PATH:
8-
The list of directories searched to find executable programs
9-
.. envvar:: PYTHONPATH:
10-
The list of directories that is searched to find Python packages and modules
7+
.. envvar:: PATH
8+
9+
The list of directories searched to find executable programs
10+
11+
.. envvar:: PYTHONPATH
12+
13+
The list of directories that is searched to find Python packages and modules
1114

1215

1316
Setting Environment Variables

lib/matplotlib/patches.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
# these are not available for the object inspector until after the
1414
# class is built so we define an initial set here for the init
1515
# function and they will be overridden after object definition
16-
artist.kwdocd['Patch'] = """\
16+
artist.kwdocd['Patch'] = """
17+
1718
================= ==============================================
1819
Property Description
1920
================= ==============================================
@@ -36,6 +37,7 @@
3637
================= ==============================================
3738
3839
"""
40+
3941
class Patch(artist.Artist):
4042
"""
4143
A patch is a 2D thingy with a face color and an edge color

lib/matplotlib/pyplot.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,6 @@ def axes(*args, **kwargs):
424424
* examples/axes_demo.py places custom axes.
425425
* examples/shared_axis_demo.py uses sharex and sharey
426426
427-
428427
"""
429428

430429
nargs = len(args)

0 commit comments

Comments
 (0)