diff options
author | Mike Taves <mwtoews@gmail.com> | 2020-01-24 14:15:10 +1300 |
---|---|---|
committer | Mike Taves <mwtoews@gmail.com> | 2020-01-24 14:15:10 +1300 |
commit | b291d20b9fd42edbcaf37bbc4d30202d1eb48a6e (patch) | |
tree | 42e640c4f89eb84e0363b477392c325b6e9dd977 /numpy/distutils/misc_util.py | |
parent | 68224f43d09393c1981bb83ee3c13a5158d2817c (diff) | |
download | numpy-b291d20b9fd42edbcaf37bbc4d30202d1eb48a6e.tar.gz |
MAINT/DOC: Remove use of old Python __builtin__, now known as builtins
Diffstat (limited to 'numpy/distutils/misc_util.py')
-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 b7fd74c47..4be1df94e 100644 --- a/numpy/distutils/misc_util.py +++ b/numpy/distutils/misc_util.py @@ -164,7 +164,6 @@ def get_path_from_frame(frame, parent_path=None): # we're probably running setup.py as execfile("setup.py") # (likely we're building an egg) d = os.path.abspath('.') - # hmm, should we use sys.argv[0] like in __builtin__ case? if parent_path is not None: d = rel_path(d, parent_path) |