Skip to content

Commit 3cbfdba

Browse files
committed
Merge branch 'avo-exceptions-chaining' of https://github.com/anthonyhvo12/numpy into avo-exceptions-chaining
2 parents 876bc5d + 328b5a6 commit 3cbfdba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benchmarks/benchmarks/bench_ufunc_strides.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def setup(self, ufuncname, dtype, stride):
6767
np.seterr(all='ignore')
6868
try:
6969
self.f = getattr(np, ufuncname)
70-
xcept AttributeError:
70+
except AttributeError:
7171
raise NotImplementedError(f"No ufunc {ufuncname} found") from None
7272
N = 10000
7373
self.arr1 = np.array(np.random.rand(stride*N), dtype=dtype)

0 commit comments

Comments
 (0)