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 2020-12-14.23:13:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1607987631.45.0.114158791829.issue42641@roundup.psfhosted.org>
In-reply-to
Content
The pipes module uses os.popen(): The open_r() and open_w() methods of pipes.Template are implemented with os.popen().

Multiple tests still use os.popen():

* test_select: SelectTestCase.test_select()
* test_posix: PosixTester.test_getgroups()
* test_os: EnvironTests._test_underlying_process_env()
* test_os: EnvironTests.test_update2()

And os.popen() tests:

* test_os: EnvironTests.test_os_popen_iter()
* test_popen
History
Date User Action Args
2020-12-14 23:13:51vstinnersetrecipients: + vstinner
2020-12-14 23:13:51vstinnersetmessageid: <1607987631.45.0.114158791829.issue42641@roundup.psfhosted.org>
2020-12-14 23:13:51vstinnerlinkissue42641 messages
2020-12-14 23:13:51vstinnercreate