diff options
author | Sebastian Berg <sebastian@sipsolutions.net> | 2016-01-23 15:58:58 +0100 |
---|---|---|
committer | Sebastian Berg <sebastian@sipsolutions.net> | 2016-09-02 16:39:17 +0200 |
commit | 7884a8c9f5f5c6657413dbeaa59ad969280d38ea (patch) | |
tree | 91b55f723315291bf2605bb42aef809a65ff1d85 /numpy/distutils/misc_util.py | |
parent | 9164f23c19c049e28d4d4825a53bbb01aedabcfc (diff) | |
download | numpy-7884a8c9f5f5c6657413dbeaa59ad969280d38ea.tar.gz |
ENH: Add stacklevel to all (or almost all) our function calls
Diffstat (limited to 'numpy/distutils/misc_util.py')
-rw-r--r-- | numpy/distutils/misc_util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/misc_util.py b/numpy/distutils/misc_util.py index 2cd185332..0070678d3 100644 --- a/numpy/distutils/misc_util.py +++ b/numpy/distutils/misc_util.py @@ -2206,7 +2206,7 @@ def default_config_dict(name = None, parent_name = None, local_path=None): 'deprecated default_config_dict(%r,%r,%r)' % (name, parent_name, local_path, name, parent_name, local_path, - )) + ), stacklevel=2) c = Configuration(name, parent_name, local_path) return c.todict() |