summaryrefslogtreecommitdiff
path: root/numpy/distutils/exec_command.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2015-06-21 16:10:24 -0400
committerCharles Harris <charlesr.harris@gmail.com>2015-06-21 16:10:24 -0400
commite3b2bc0b0f31482cd112660393245116ae55ecbf (patch)
treef00cdd12d96cca0a694f46d4bf0ba60dc2cf1ebd /numpy/distutils/exec_command.py
parent95b2c24820759397695ece5f512e930e7c1712cf (diff)
parenta27f56069fb883c44dd4986d15e751162d85b621 (diff)
downloadnumpy-e3b2bc0b0f31482cd112660393245116ae55ecbf.tar.gz
Merge pull request #5990 from charris/1.10-deprecated-removal
1.10 deprecated removal
Diffstat (limited to 'numpy/distutils/exec_command.py')
-rw-r--r--numpy/distutils/exec_command.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/numpy/distutils/exec_command.py b/numpy/distutils/exec_command.py
index baf81f337..f4b6f5928 100644
--- a/numpy/distutils/exec_command.py
+++ b/numpy/distutils/exec_command.py
@@ -72,12 +72,6 @@ def get_pythonexe():
assert os.path.isfile(pythonexe), '%r is not a file' % (pythonexe,)
return pythonexe
-def splitcmdline(line):
- import warnings
- warnings.warn('splitcmdline is deprecated; use shlex.split',
- DeprecationWarning)
- return shlex.split(line)
-
def find_executable(exe, path=None, _cache={}):
"""Return full path of a executable or None.