[New-bugs-announce] [issue35345] Remove platform.popen(), deprecated since Python 3.3

STINNER Victor report at bugs.python.org
Wed Nov 28 18:54:11 EST 2018


New submission from STINNER Victor <vstinner at redhat.com>:

platform.popen() is deprecated since Python 3.3: bpo-11377. Calling the function emits a DeprecationWarning and the function is documented as being deprecated.

The function is documented in the "Win95/98 specific":
https://docs.python.org/dev/library/platform.html#win95-98-specific

Python 3.5 dropped Windows XP support. I don't think that Python 2.7 still support Windows 98. So it's time to remove support for this old OS.

Python 3 now has a os.popen() function:
https://docs.python.org/dev/library/os.html#os.popen

----------
components: Library (Lib)
messages: 330639
nosy: vstinner
priority: normal
severity: normal
status: open
title: Remove platform.popen(), deprecated since Python 3.3
versions: Python 3.8

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue35345>
_______________________________________


More information about the New-bugs-announce mailing list