Message248364
| 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:44 | steve.dower | set | recipients:
+ steve.dower, lemburg, larry |
| 2015-08-10 18:15:43 | steve.dower | set | messageid: <1439230543.98.0.21493600703.issue24839@psf.upfronthosting.co.za> |
| 2015-08-10 18:15:43 | steve.dower | link | issue24839 messages |
| 2015-08-10 18:15:43 | steve.dower | create | |
|