diff options
Diffstat (limited to 'numpy/core/defchararray.py')
-rw-r--r-- | numpy/core/defchararray.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/numpy/core/defchararray.py b/numpy/core/defchararray.py index 605b478e2..ec1304e5a 100644 --- a/numpy/core/defchararray.py +++ b/numpy/core/defchararray.py @@ -622,10 +622,10 @@ def find(a, sub, start=0, end=None): return _vec_string( a, integer, 'find', [sub, start] + _clean_args(end)) -if sys.version_info >= (2.6): - def format(a, *args, **kwargs): - # _vec_string doesn't support kwargs at present - raise NotImplementedError +# if sys.version_info >= (2.6): +# def format(a, *args, **kwargs): +# # _vec_string doesn't support kwargs at present +# raise NotImplementedError def index(a, sub, start=0, end=None): """ |