diff options
author | Sebastian Berg <sebastianb@nvidia.com> | 2023-04-28 10:04:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-28 10:04:53 +0200 |
commit | 1c9532bb8857551d163517bf0028441c7cd544c8 (patch) | |
tree | 328461db08a78ff0db667e7135dd9d8e2f2e1ff5 /numpy/distutils/command/build_ext.py | |
parent | 7fe3ffadbbe9114cbc561c27d7a6d285f84fc129 (diff) | |
parent | 080cf82ebc5858ec47eff0d49bdf48b74f955274 (diff) | |
download | numpy-1c9532bb8857551d163517bf0028441c7cd544c8.tar.gz |
Merge pull request #22493 from mwtoews/maint-open
MAINT: remove redundant open() modes and io.open() alias
Diffstat (limited to 'numpy/distutils/command/build_ext.py')
-rw-r--r-- | numpy/distutils/command/build_ext.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/distutils/command/build_ext.py b/numpy/distutils/command/build_ext.py index 871aa1099..68b13c0dd 100644 --- a/numpy/distutils/command/build_ext.py +++ b/numpy/distutils/command/build_ext.py @@ -642,12 +642,12 @@ class build_ext (old_build_ext): if os.path.isfile(fake_lib): # Replace fake static library libraries.remove(lib) - with open(fake_lib, 'r') as f: + with open(fake_lib) as f: unlinkable_fobjects.extend(f.read().splitlines()) # Expand C objects c_lib = os.path.join(libdir, lib + '.cobjects') - with open(c_lib, 'r') as f: + with open(c_lib) as f: objects.extend(f.read().splitlines()) # Wrap unlinkable objects to a linkable one |