8000 check freetype version also specifies what is wrong by prhbrt · Pull Request #6403 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

check freetype version also specifies what is wrong #6403

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

Closed
wants to merge 10 commits into from
Prev Previous commit
inserted/removed unused blank lines for pep and removed unused imports
  • Loading branch information
Herbert Kruitbosch committed Jul 19, 2016
commit eef6b93d82a5099f30dc0271389bcfff85888ad5
3 changes: 1 addition & 2 deletions lib/matplotlib/figure.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,6 @@
TransformedBbox)
from matplotlib.backend_bases import NonGuiException

import io

docstring.interpd.update(projection_names=get_projection_names())


Expand Down Expand Up 8000 @@ -1084,6 +1082,7 @@ def subplots(self, nrows=1, ncols=1, sharex=False, sharey=False,
--------
pyplot.subplots : pyplot API; docstring includes examples.
"""

# for backwards compatibility
if isinstance(sharex, bool):
sharex = "all" if sharex else "none"
Expand Down
3 changes: 1 addition & 2 deletions lib/matplotlib/pyplot.py
< 6701 td id="diff-d1edb5a528e7423f485b24cac2083d05d365a19352f886bf15af3ef442bdda92R69" data-line-number="69" class="blob-num blob-num-context js-linkable-line-number js-blob-rnum">
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
import six

import sys
import io
import warnings
import types

Expand Down Expand Up @@ -67,7 +66,6 @@
LinearLocator, LogLocator, AutoLocator, MultipleLocator,\
MaxNLocator
from matplotlib.backends import pylab_setup
from argparse import ArgumentError

## Backend detection ##
def _backend_selection():
Expand Down Expand Up @@ -1156,6 +1154,7 @@ def subplots(nrows=1, ncols=1, sharex=False, sharey=False, squeeze=True,
gridspec_kw=gridspec_kw)
return fig, axs


def subplot2grid(shape, loc, rowspan=1, colspan=1, fig=None, **kwargs):
"""
Create a subplot in a grid. The grid is specified by *shape*, at
Expand Down
0