diff options
Diffstat (limited to 'numpy/lib/_iotools.py')
-rw-r--r-- | numpy/lib/_iotools.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/lib/_iotools.py b/numpy/lib/_iotools.py index dec0f5a27..27c1e76db 100644 --- a/numpy/lib/_iotools.py +++ b/numpy/lib/_iotools.py @@ -142,7 +142,7 @@ def flatten_dtype(ndtype, flatten_base=False): -class LineSplitter: +class LineSplitter(object): """ Object to split a string at a given delimiter or at given places. @@ -228,7 +228,7 @@ class LineSplitter: -class NameValidator: +class NameValidator(object): """ Object to validate a list of strings to use as field names. @@ -448,7 +448,7 @@ class ConversionWarning(UserWarning): -class StringConverter: +class StringConverter(object): """ Factory class for function transforming a string into another object (int, float). |