We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a42312 commit 84498b0Copy full SHA for 84498b0
numpy/linalg/lapack_lite/make_lite.py
@@ -275,8 +275,8 @@ def scrubF2CSource(c_file):
275
def ensure_executable(name):
276
try:
277
which(name)
278
- except Exception:
279
- raise SystemExit(name + ' not found')
+ except Exception as ex:
+ raise SystemExit(name + ' not found') from ex
280
281
def create_name_header(output_dir):
282
routine_re = re.compile(r'^ (subroutine|.* function)\s+(\w+)\(.*$',
0 commit comments