diff options
author | mdroe <mdroe@localhost> | 2009-10-14 17:01:33 +0000 |
---|---|---|
committer | mdroe <mdroe@localhost> | 2009-10-14 17:01:33 +0000 |
commit | d12379c8934263554a5442c48f33e673710ef0e4 (patch) | |
tree | 793b6a68b13052d96f1e19d904fac480152f85bb /numpy/core/defchararray.py | |
parent | 7b859337c7f18ca5389433224e6a3074c7589ef6 (diff) | |
download | numpy-d12379c8934263554a5442c48f33e673710ef0e4.tar.gz |
Remove 'format' altogether, since I don't think I'll be implementing it any time soon.
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): """ |