diff options
author | Jaime <jaime.frio@gmail.com> | 2014-10-18 22:55:21 -0700 |
---|---|---|
committer | Jaime <jaime.frio@gmail.com> | 2014-10-18 22:55:21 -0700 |
commit | df9db6ed5f9c9e315993f4efed5dba613e6cd84c (patch) | |
tree | 355c17e568c202a93b2e71b12fd7f93b77b72416 /numpy/core | |
parent | 7b3809b0061ffbb64c227d393a3771f60d1427d5 (diff) | |
parent | 6114f1c963ad011d276701967864f339e8e45ae0 (diff) | |
download | numpy-df9db6ed5f9c9e315993f4efed5dba613e6cd84c.tar.gz |
Merge pull request #5206 from WarrenWeckesser/typo
MAINT: Fix typo in the 'issubclass' docstring.
Diffstat (limited to 'numpy/core')
-rw-r--r-- | numpy/core/numerictypes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/numerictypes.py b/numpy/core/numerictypes.py index 1545bc734..0c03cce89 100644 --- a/numpy/core/numerictypes.py +++ b/numpy/core/numerictypes.py @@ -670,7 +670,7 @@ def issubclass_(arg1, arg2): Determine if a class is a subclass of a second class. `issubclass_` is equivalent to the Python built-in ``issubclass``, - except that it returns False instead of raising a TypeError is one + except that it returns False instead of raising a TypeError if one of the arguments is not a class. Parameters |