diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-09-30 13:24:19 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-30 13:24:19 -0500 |
commit | 221d44d2da3756c1686b2c8d44e77b4f0921a39a (patch) | |
tree | 596aff232ab9ae20148fa6d4f5457622fcf1d9d2 | |
parent | 4a7926f7085482a5f1f3669715ca20d20f12099a (diff) | |
parent | 8928549975af43db2dc165f4f8cb207baaa8a793 (diff) | |
download | numpy-221d44d2da3756c1686b2c8d44e77b4f0921a39a.tar.gz |
Merge pull request #12058 from ceh-forks/remove-redundant-assignment
MAINT: remove redundant assignment
-rw-r--r-- | numpy/distutils/misc_util.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/numpy/distutils/misc_util.py b/numpy/distutils/misc_util.py index 8305aeae5..5cd61cc14 100644 --- a/numpy/distutils/misc_util.py +++ b/numpy/distutils/misc_util.py @@ -1564,7 +1564,6 @@ class Configuration(object): """Common implementation for add_library and add_installed_library. Do not use directly""" build_info = copy.copy(build_info) - name = name #+ '__OF__' + self.name build_info['sources'] = sources # Sometimes, depends is not set up to an empty list by default, and if |