8000 Third party docs fixes/updates by jbednar · Pull Request #6088 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Third party docs fixes/updates #6088

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 39 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
07d54b9
Fixed path to thirdpartypackages from main docs page, and added links…
jbednar Mar 1, 2016
663ea0c
Reorganized thirdpartypackages web page and added images and links
jbednar Mar 1, 2016
7a92005
Fixed trailing whitespace
jbednar Mar 1, 2016
a1e3daa
Removed outdated version reference in docs
jbednar Mar 2, 2016
efff4d0
bug fix related #5479
ryanbelt Feb 22, 2016
ce66585
raising error,rather then check type
ryanbelt Feb 23, 2016
f6bde3a
minor fix on indentation
ryanbelt Feb 23, 2016
08147b3
fix indention to 4 space, but not tap
ryanbelt Feb 23, 2016
f871bc8
Correct link to favicon by using build in sphix support
jenshnielsen Feb 22, 2016
360d891
added test for bug#5479 auto column
ryanbelt Feb 26, 2016
76e292c
pep8 new line at last
ryanbelt Feb 26, 2016
7cf7792
fix pep8 miss space after comma
ryanbelt Feb 26, 2016
64a6f5f
pep8 line gt 80 fix
ryanbelt Feb 26, 2016
b2f3621
comment fix, rerun online testing
ryanbelt Feb 26, 2016
7b0aa47
non integer interable test case
ryanbelt Feb 28, 2016
8201b55
fixed bug 6028
crazyo Feb 29, 2016
a0f5c3a
fixed a bug in previous PR
crazyo Feb 29, 2016
b204995
made change to PR according to comments
crazyo Feb 29, 2016
81b7537
Fixed issue 4346
paulkirow Feb 29, 2016
9a5c275
Created test for previous issue
paulkirow Mar 1, 2016
f719105
Removed redundancies in test
paulkirow Mar 1, 2016
5062ecb
changed non_math to math according to comments on bug 6028
crazyo Mar 1, 2016
8a3b1c0
MNT: Bring back the module level 'backend'
ericdill Mar 2, 2016
dc9384c
MNT: Set the module level `backend` in pylab_setup
ericdill Mar 2, 2016
f9a1540
MNT: Set the module backend param at the end
ericdill Mar 2, 2016
d83f61d
PEP8: Shorten lines that are too long
ericdill Mar 2, 2016
3b75b74
Update INSTALL
scott-vsi Mar 2, 2016
d26e1dc
Fix #6069. Handle image masks correctly
mdboom Mar 2, 2016
6577dc3
Update INSTALL
scott-vsi Mar 2, 2016
a7359f9
Update installing_faq.rst
scott-vsi Mar 2, 2016
7ee82d6
Fix image_masked.py example
mdboom Mar 2, 2016
7af951d
CI: try explicitly including msvc_runtime
tacaswell Mar 6, 2016
a49a68e
CI: add msvc_runtime to conda recipe
tacaswell Mar 6, 2016
871be40
CI: install libpng in windows
tacaswell Mar 6, 2016
3abe936
added comment on "usetex=False" to ainde debugging when latex not ava…
dacoex Mar 4, 2016
270092a
BUG Raise exception for invalid input
luispedro Oct 6, 2013
0afc45e
Fixes matplotlib/matplotlib#1235
dashed Mar 2, 2016
39d3630
MNT: improve image array argument checking in to_rgba. Closes #2499.
efiring Mar 7, 2016
cd89bcb
Fix about dialog on Qt 5
estan Mar 7, 2016
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
Prev Previous commit
Next Next commit
PEP8: Shorten lines that are too long
  • Loading branch information
ericdill authored and jbednar committed Mar 8, 2016
commit d83f61d8eb44817f438af36b3d5ad19adb39f073
6 changes: 4 additions & 2 deletions lib/matplotlib/backends/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ def pylab_setup(name=None):

# the last argument is specifies whether to use absolute or relative
# imports. 0 means only perform absolute imports.
backend_mod = __import__(backend_name, globals(), locals(), [backend_name], 0)
backend_mod = __import__(backend_name, globals(), locals(),
[backend_name], 0)

# Things we pull in from all backends
new_figure_manager = backend_mod.new_figure_manager
Expand All @@ -76,7 +77,8 @@ def do_nothing(*args, **kwargs):

show = getattr(backend_mod, 'show', do_nothing_show)

draw_if_interactive = getattr(backend_mod, 'draw_if_interactive', do_nothing)
draw_if_interactive = getattr(backend_mod, 'draw_if_interactive',
do_nothing)

matplotlib.verbose.report('backend %s version %s' %
(name, backend_version))
Expand Down
0