diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2017-07-24 15:20:44 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-24 15:20:44 -0500 |
commit | d75b86c0c49f7eb3ec60564c2e23b3ff237082a2 (patch) | |
tree | f3aebdcb99ef84c8f636a495bb84f783b2a9294d /numpy/f2py | |
parent | f84274100090d52366e5218696b1b8d3a8c73a44 (diff) | |
parent | 7748f26fdbc44cf6d06c270f0a166d797b574744 (diff) | |
download | numpy-d75b86c0c49f7eb3ec60564c2e23b3ff237082a2.tar.gz |
Merge pull request #9452 from eric-wieser/new-style-classes
MAINT: Use new-style classes on 2.7
Diffstat (limited to 'numpy/f2py')
-rw-r--r-- | numpy/f2py/auxfuncs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/f2py/auxfuncs.py b/numpy/f2py/auxfuncs.py index d27b95947..404bdbd2d 100644 --- a/numpy/f2py/auxfuncs.py +++ b/numpy/f2py/auxfuncs.py @@ -552,7 +552,7 @@ class F2PYError(Exception): pass -class throw_error: +class throw_error(object): def __init__(self, mess): self.mess = mess |