8000 Catch exception for PyPy by gabriel-munteanu · Pull Request #8803 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Catch exception for PyPy #8803

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

Merged
merged 4 commits into from
Jun 27, 2017
Merged
Changes from 1 commit
Commits
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
Fix tabs
  • Loading branch information
gabriel-munteanu committed Jun 26, 2017
commit e3037cb2af8c78b84e14b829ae16cc7c86bebd02
2 changes: 1 addition & 1 deletion lib/matplotlib/cbook/deprecation.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def finalize(wrapper, new_doc):
obj.__doc__ = new_doc
except (AttributeError, TypeError):
pass # cls.__doc__ is not writeable on Py2.
#TypeError occurs on PyPy
#TypeError occurs on PyPy
obj.__init__ = wrapper
return obj
else:
Expand Down
0