summaryrefslogtreecommitdiffstats
path: root/Doc/library/platform.rst
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2018-11-29 08:58:20 (GMT)
committerGitHub <noreply@github.com>2018-11-29 08:58:20 (GMT)
commit73104fa1e6a791f7d66c0091ed91f6c396ca0fb2 (patch)
tree460498e3e8f71eedf8f751ec72fe2662f2af5983 /Doc/library/platform.rst
parent7cc1fa40b76de34a0fe86162667c87ce7a18f33d (diff)
downloadcpython-73104fa1e6a791f7d66c0091ed91f6c396ca0fb2.zip
cpython-73104fa1e6a791f7d66c0091ed91f6c396ca0fb2.tar.gz
cpython-73104fa1e6a791f7d66c0091ed91f6c396ca0fb2.tar.bz2
bpo-35345: Remove platform.popen() (GH-10781)
Remove platform.popen() function, it was deprecated since Python 3.3: use os.popen() instead. Rename also the "Removed" section to "API and Feature Removals" of What's New in Python 3.8.
Diffstat (limited to 'Doc/library/platform.rst')
-rw-r--r--Doc/library/platform.rst14
1 files changed, 0 insertions, 14 deletions
diff --git a/Doc/library/platform.rst b/Doc/library/platform.rst
index 92691fc..7ac4b02 100644
--- a/Doc/library/platform.rst
+++ b/Doc/library/platform.rst
@@ -212,20 +212,6 @@ Windows Platform
only runs on Win32 compatible platforms.
-Win95/98 specific
-^^^^^^^^^^^^^^^^^
-
-.. function:: popen(cmd, mode='r', bufsize=-1)
-
- Portable :func:`popen` interface. Find a working popen implementation
- preferring :func:`win32pipe.popen`. On Windows NT, :func:`win32pipe.popen`
- should work; on Windows 9x it hangs due to bugs in the MS C library.
-
- .. deprecated:: 3.3
- This function is obsolete. Use the :mod:`subprocess` module. Check
- especially the :ref:`subprocess-replacements` section.
-
-
Mac OS Platform
---------------