This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients vstinner
Date 2018-11-28.23:54:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1543449251.4.0.788709270274.issue35345@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2018-11-28 23:54:11vstinnersetrecipients: + vstinner
2018-11-28 23:54:11vstinnersetmessageid: <1543449251.4.0.788709270274.issue35345@psf.upfronthosting.co.za>
2018-11-28 23:54:11vstinnerlinkissue35345 messages
2018-11-28 23:54:11vstinnercreate