diff options
author | Emil Hessman <emil@hessman.se> | 2018-09-30 19:03:34 +0200 |
---|---|---|
committer | Emil Hessman <emil@hessman.se> | 2018-09-30 19:03:34 +0200 |
commit | 8928549975af43db2dc165f4f8cb207baaa8a793 (patch) | |
tree | 4ea661baf3b4301a54c7c12ed0081a914d636e02 | |
parent | 87c1fcd0308ee78e743401bac2b0085249cca1e5 (diff) | |
download | numpy-8928549975af43db2dc165f4f8cb207baaa8a793.tar.gz |
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 |