summaryrefslogtreecommitdiff
path: root/numpy/distutils/exec_command.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2015-06-20 13:49:59 -0600
committerCharles Harris <charlesr.harris@gmail.com>2015-06-21 13:46:12 -0600
commit16f1622afa6be491a17c8b21f6fec30c2de4d752 (patch)
tree9e021516ca8a02bde117ffc1d4301a059682bce4 /numpy/distutils/exec_command.py
parent81788b45e383d2f6494cf3daadbd7fb6bfc550b1 (diff)
downloadnumpy-16f1622afa6be491a17c8b21f6fec30c2de4d752.tar.gz
DEP,MAINT: Remove deprecated splitcmdline.
Was in numpy/distutils/exec_command.py. Update 1.10-notes.rst.
Diffstat (limited to 'numpy/distutils/exec_command.py')
-rw-r--r--numpy/distutils/exec_command.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/numpy/distutils/exec_command.py b/numpy/distutils/exec_command.py
index d210bc27b..f4b6f5928 100644
--- a/numpy/distutils/exec_command.py
+++ b/numpy/distutils/exec_command.py
@@ -72,13 +72,6 @@ def get_pythonexe():
assert os.path.isfile(pythonexe), '%r is not a file' % (pythonexe,)
return pythonexe
-def splitcmdline(line):
- import warnings
- # 2007-12-26 RemoveMe
- 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.