summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/release/1.10.0-notes.rst4
-rw-r--r--numpy/distutils/exec_command.py7
2 files changed, 3 insertions, 8 deletions
diff --git a/doc/release/1.10.0-notes.rst b/doc/release/1.10.0-notes.rst
index d3b99cf76..2c7e9a062 100644
--- a/doc/release/1.10.0-notes.rst
+++ b/doc/release/1.10.0-notes.rst
@@ -25,7 +25,9 @@ Dropped Support:
* The polytemplate.py file has been removed.
* The _dotblas module is no longer available.
* The testcalcs.py file has been removed.
-* npy_PyFile_Dup and npy_PyFile_DupClose have been removed from npy_3kcompat.h.
+* npy_PyFile_Dup`` and npy_PyFile_DupClose have been removed from
+ npy_3kcompat.h.
+* splitcmdline has been removed from numpy/distutils/exec_command.py.
Future Changes:
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.