diff options
author | Ralf Gommers <ralf.gommers@gmail.com> | 2019-03-13 14:45:57 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-13 14:45:57 -0700 |
commit | eea136ffadf75b92d8125678ce196367b1e3836c (patch) | |
tree | a26e7648de9af474b8027558f12ffd2581578a30 /doc | |
parent | 8ba1ca574a54a102177e81ffc63564748afb6332 (diff) | |
parent | 0be56a4ce076fe610f56d4e64320394e49499abc (diff) | |
download | numpy-eea136ffadf75b92d8125678ce196367b1e3836c.tar.gz |
Merge pull request #12879 from mattip/deprecate-exec_command
DEP: deprecate exec_command
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/1.17.0-notes.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/release/1.17.0-notes.rst b/doc/release/1.17.0-notes.rst index cd547c2b4..b26938e18 100644 --- a/doc/release/1.17.0-notes.rst +++ b/doc/release/1.17.0-notes.rst @@ -18,6 +18,13 @@ New functions Deprecations ============ +Deprecate ``numpy.distutils.exec_command`` and ``numpy.distutils.temp_file_name`` +--------------------------------------------------------------------------------- + +The internal use of these functions has been refactored and there are better +alternatives. Relace ``exec_command`` with `subprocess.Popen` and +``temp_file_name`` with `tempfile.mkstemp`. + Future Changes ============== |