[issue24839] platform._syscmd_ver raises DeprecationWarning

2015-08-11 Thread Larry Hastings
Larry Hastings added the comment: Merged. Please forward-port to 3.5.1 and 3.6. Thanks! (See? Already I can tell this rc-cycle is going to be way easier on me than 3.4 was.) -- ___ Python tracker _

[issue24839] platform._syscmd_ver raises DeprecationWarning

2015-08-11 Thread Larry Hastings
Larry Hastings added the comment: They are currently in sync, yes. The 3.5 branch has been a ghost town the last day or two, which tbh has been pleasant for me.helpfu -- ___ Python tracker ___

[issue24839] platform._syscmd_ver raises DeprecationWarning

2015-08-10 Thread Steve Dower
Changes by Steve Dower : -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed ___ Python tracker ___ ___ Pyt

[issue24839] platform._syscmd_ver raises DeprecationWarning

2015-08-10 Thread Steve Dower
Steve Dower added the comment: PR is at https://bitbucket.org/larry/cpython350/pull-requests/1/issue-24839-platform_syscmd_ver-raises/diff (For my sanity, your 3.5 branch and the hg.p.o 3.5 branch *are* currently in sync, yes? Any value in adding a 3.5.0 branch for your divergence so we can a

[issue24839] platform._syscmd_ver raises DeprecationWarning

2015-08-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7cfe20a6395d by Steve Dower in branch '3.5': Issue #24839: platform._syscmd_ver raises DeprecationWarning https://hg.python.org/cpython/rev/7cfe20a6395d -- nosy: +python-dev ___ Python tracker

[issue24839] platform._syscmd_ver raises DeprecationWarning

2015-08-10 Thread Larry Hastings
Larry Hastings added the comment: My Bitbucket repo is now public. https://bitbucket.org/larry/cpython350 -- ___ Python tracker ___ _

[issue24839] platform._syscmd_ver raises DeprecationWarning

2015-08-10 Thread Larry Hastings
Larry Hastings added the comment: Not yet. I'll open it after I release 3.5.0rc1. I'll send email to clp-d and clp-c when I do. I can email you privately too if you like. -- ___ Python tracker _

[issue24839] platform._syscmd_ver raises DeprecationWarning

2015-08-10 Thread Steve Dower
Steve Dower added the comment: Have you opened up the repo yet? I'm getting "no access" errors from BB. -- ___ Python tracker ___ ___

[issue24839] platform._syscmd_ver raises DeprecationWarning

2015-08-10 Thread Larry Hastings
Larry Hastings added the comment: Yes, I'll accept that for 3.5.0. Paste a link to a pull request here at your earliest convenience (and opportunity). -- ___ Python tracker ___

[issue24839] platform._syscmd_ver raises DeprecationWarning

2015-08-10 Thread Steve Dower
New submission from Steve Dower: 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 the