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

Skip to content

Commit 76c7303

Browse files
committed
Merge branch 'v2.x' into master
2 parents f125bdf + 92b5c95 commit 76c7303

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

doc/users/customizing.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ Using style sheets
88
==================
99

1010
The ``style`` package adds support for easy-to-switch plotting "styles" with
11-
the same parameters as a matplotlibrc_ file.
11+
the same parameters as a matplotlibrc_ file (which is read at startup to
12+
configure matplotlib).
1213

1314
There are a number of pre-defined styles provided by matplotlib. For
1415
example, there's a pre-defined style called "ggplot", which emulates the

doc/users/text_intro.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ Text introduction
44
=================
55

66
matplotlib has extensive text support, including support for
7-
mathematical expressions, truetype support for raster and
8-
vector outputs, newline separated text with arbitrary
7+
mathematical expressions, truetype support for raster and
8+
vector outputs, newline separated text with arbitrary
99
rotations, and unicode support. Because it embeds
1010
fonts directly in output documents, e.g., for postscript
1111
or PDF, what you see on the screen is what you get in the hardcopy.

lib/mpl_toolkits/axes_grid1/anchored_artists.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
from __future__ import (absolute_import, division, print_function,
22
unicode_literals)
33
import six
4+
45
from matplotlib import docstring
56
from matplotlib.offsetbox import (AnchoredOffsetbox, AuxTransformBox,
67
DrawingArea, TextArea, VPacker)
78
from matplotlib.patches import Rectangle, Ellipse
89

10+
911
__all__ = ['AnchoredDrawingArea', 'AnchoredAuxTransformBox',
1012
'AnchoredEllipse', 'AnchoredSizeBar']
1113

0 commit comments

Comments
 (0)