summaryrefslogtreecommitdiff
path: root/numpy/core/defchararray.py
diff options
context:
space:
mode:
authormdroe <mdroe@localhost>2009-10-14 17:01:33 +0000
committermdroe <mdroe@localhost>2009-10-14 17:01:33 +0000
commitd12379c8934263554a5442c48f33e673710ef0e4 (patch)
tree793b6a68b13052d96f1e19d904fac480152f85bb /numpy/core/defchararray.py
parent7b859337c7f18ca5389433224e6a3074c7589ef6 (diff)
downloadnumpy-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.py8
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):
"""