Skip to content
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

Merge 2x to master #5936

Merged
merged 18 commits into from Jan 28, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
f24d1bd
Remove reference to changelog from frontpage
jenshnielsen Jan 19, 2016
b7dfa4f
Merge pull request #5872 from jenshnielsen/sphinx134
tacaswell Jan 24, 2016
6d4edf0
Merge pull request #5878 from jenshnielsen/removechangelog
tacaswell Jan 24, 2016
cd866e9
Merge pull request #5880 from zblz/fix-primes
mdboom Jan 25, 2016
0163652
Make sure that we have at least one loc before calculating as suggest…
jenshnielsen Jan 25, 2016
a11fb24
DOC: add function name to deprecation warning
tacaswell Jan 26, 2016
180a21c
Merge pull request #5914 from dopplershift/fix-barbs
tacaswell Jan 26, 2016
d39b331
Merge pull request #5913 from tacaswell/backport_numtick_fix
tacaswell Jan 26, 2016
dc3f061
Merge pull request #5915 from tacaswell/mnt_clarify_deprecation
jenshnielsen Jan 26, 2016
c835acb
Update docstring to match kwarg default
mdboom Jan 27, 2016
1e72a2b
Merge pull request #5924 from mdboom/fix-image-comparison-docstring
tacaswell Jan 27, 2016
0ea4ec9
Merge pull request #5910 from mdboom/image-read-from-url
WeatherGod Jan 25, 2016
99ad89d
Merge pull request #5927 from WeatherGod/backport_5910
mdboom Jan 27, 2016
9372533
Merge pull request #5620 from tacaswell/fix_quiverkey
efiring Dec 5, 2015
cb4e69f
Merge pull request #5932 from jenshnielsen/quiverbackport
WeatherGod Jan 28, 2016
b32900d
Merge remote-tracking branch 'matplotlib/v1.5.x' into merge15xto2xcon…
jenshnielsen Jan 28, 2016
9ecd876
Merge pull request #5934 from jenshnielsen/merge15xto2xconflict
WeatherGod Jan 28, 2016
b118650
Merge remote-tracking branch 'matplotlib/v2.x'
jenshnielsen Jan 28, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 1 addition & 3 deletions doc/_templates/index.html
Expand Up @@ -151,9 +151,7 @@ <h4>Need help?</h4>

<p>To keep up to date with what's going on in matplotlib, see
the <a href="{{ pathto('users/whats_new.html', 1) }}">what's new
page</a>, the more detailed <a href="{{ pathto('_static/CHANGELOG', 1)
}}">changelog</a> or browse
the <a href="https://github.com/matplotlib/matplotlib">source
page</a> or browse the <a href="https://github.com/matplotlib/matplotlib">source
code</a>. Anything that could require changes to your existing code
is logged in the <a href="{{ pathto('api/api_changes.html', 1) }}">api
changes</a> file.</p>
Expand Down
8 changes: 5 additions & 3 deletions lib/matplotlib/artist.py
Expand Up @@ -214,7 +214,8 @@ def set_axes(self, axes):

ACCEPTS: an :class:`~matplotlib.axes.Axes` instance
"""
warnings.warn(_get_axes_msg, mplDeprecation, stacklevel=1)
warnings.warn(_get_axes_msg.format('set_axes'), mplDeprecation,
stacklevel=1)
self.axes = axes

def get_axes(self):
Expand All @@ -225,7 +226,8 @@ def get_axes(self):
This has been deprecated in mpl 1.5, please use the
axes property. Will be removed in 1.7 or 2.0.
"""
warnings.warn(_get_axes_msg, mplDeprecation, stacklevel=1)
warnings.warn(_get_axes_msg.format('get_axes'), mplDeprecation,
stacklevel=1)
return self.axes

@property
Expand Down Expand Up @@ -1581,5 +1583,5 @@ def kwdoc(a):

docstring.interpd.update(Artist=kwdoc(Artist))

_get_axes_msg = """This has been deprecated in mpl 1.5, please use the
_get_axes_msg = """{} has been deprecated in mpl 1.5, please use the
axes property. A removal date has not been set."""
2 changes: 1 addition & 1 deletion lib/matplotlib/testing/decorators.py
Expand Up @@ -290,7 +290,7 @@ def image_comparison(baseline_images=None, extensions=None, tol=0,

Otherwise, a list of extensions to test. For example ['png','pdf'].

*tol*: (default 13)
*tol*: (default 0)
The RMS threshold above which the test is considered failed.

*freetype_version*: str or tuple
Expand Down
Binary file not shown.
Binary file not shown.