diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-03-03 12:54:07 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-03-03 12:54:07 (GMT) |
commit | 1dfd3803064f2ee4b6e0bae3c60ca39e5f3919ca (patch) | |
tree | 4b534f4dd099ef80b48a795a8c3db33ce85c94c0 /Doc/library/platform.rst | |
parent | 7b3b20ad29be6d77608b4bd9cd09b61b67783bcf (diff) | |
download | cpython-1dfd3803064f2ee4b6e0bae3c60ca39e5f3919ca.zip cpython-1dfd3803064f2ee4b6e0bae3c60ca39e5f3919ca.tar.gz cpython-1dfd3803064f2ee4b6e0bae3c60ca39e5f3919ca.tar.bz2 |
Issue #11377: Deprecate platform.popen() and reimplement it with os.popen().
Diffstat (limited to 'Doc/library/platform.rst')
-rw-r--r-- | Doc/library/platform.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/platform.rst b/Doc/library/platform.rst index 99a46fa..0e65eb1 100644 --- a/Doc/library/platform.rst +++ b/Doc/library/platform.rst @@ -214,6 +214,10 @@ Win95/98 specific 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 --------------- |