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 steve.dower
Recipients larry, lemburg, steve.dower
Date 2015-08-10.18:15:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1439230543.98.0.21493600703.issue24839@psf.upfronthosting.co.za>
In-reply-to
Content
platform._syscmd_ver() calls platform.popen() which raises a DeprecationWarning. This causes tests with `@skip(platform.machine() == '...')` decorators to fail.

The fix is to call `os.popen()` - patch attached. (platform.popen() just raises the warning and then calls os.popen(), so should be no risk here.)

Larry - since this causes spurious failures in numpy's test suite, can we get it into 3.5?
History
Date User Action Args
2015-08-10 18:15:44steve.dowersetrecipients: + steve.dower, lemburg, larry
2015-08-10 18:15:43steve.dowersetmessageid: <1439230543.98.0.21493600703.issue24839@psf.upfronthosting.co.za>
2015-08-10 18:15:43steve.dowerlinkissue24839 messages
2015-08-10 18:15:43steve.dowercreate