diff options
author | Eric Wieser <wieser.eric@gmail.com> | 2017-11-12 23:12:52 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-12 23:12:52 -0800 |
commit | dd84fc077eed7d7ac4bbc6c79d5acf3d111d21a0 (patch) | |
tree | ecccf5f67393fa056dfb478195733299f5410831 /numpy/core/arrayprint.py | |
parent | a943f585fda3bdbdafa5dc51ae0c0aff64df9be7 (diff) | |
download | numpy-dd84fc077eed7d7ac4bbc6c79d5acf3d111d21a0.tar.gz |
DOC: Fix incorrect comment
[ci-skip]
Diffstat (limited to 'numpy/core/arrayprint.py')
-rw-r--r-- | numpy/core/arrayprint.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/arrayprint.py b/numpy/core/arrayprint.py index 194e3f58e..da173625e 100644 --- a/numpy/core/arrayprint.py +++ b/numpy/core/arrayprint.py @@ -1020,7 +1020,7 @@ class ComplexFloatingFormat(object): i = self.imag_format(x.imag) return r + i + 'j' -# for back-compatibility, we keep the classes for each float type too +# for back-compatibility, we keep the classes for each complex type too class ComplexFormat(ComplexFloatingFormat): def __init__(self, *args, **kwargs): warnings.warn( |