diff options
author | default-303 <ajayds2001@gmail.com> | 2021-05-26 17:53:50 +0530 |
---|---|---|
committer | default-303 <ajayds2001@gmail.com> | 2021-05-26 17:53:50 +0530 |
commit | df363b0e644ba1ad2bf1815a126935f120c19860 (patch) | |
tree | e581c48477d19ad4af16f3d7c1cd56f58994f232 /numpy/distutils/system_info.py | |
parent | 366872c895ba4108d224c581e2b1941773205e4a (diff) | |
download | numpy-df363b0e644ba1ad2bf1815a126935f120c19860.tar.gz |
MAINT: Added comments for future refrence in core.py and system_info.py
Diffstat (limited to 'numpy/distutils/system_info.py')
-rw-r--r-- | numpy/distutils/system_info.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/system_info.py b/numpy/distutils/system_info.py index eb5095d66..1aed46967 100644 --- a/numpy/distutils/system_info.py +++ b/numpy/distutils/system_info.py @@ -3105,7 +3105,7 @@ def show_all(argv=None): del show_only[show_only.index(name)] conf = c() conf.verbosity = 2 - # required for verbosity settings to work correctly + # we don't need the result, but we want the side effect of printing diagnostics r = conf.get_info() if show_only: log.info('Info classes not defined: %s', ','.join(show_only)) |