Jessica McKellar added the comment:

Thanks for reporting this and providing a patch, Trundle.

The Python 3 patch didn't apply cleanly anymore, so I regenerated it and added 
tests for sys.version_info and sys.getwindowsversion.

* The patch passes `make patchcheck`
* The full test suite passes with this patch.
* Testing manually, without this patch each of the following segfaults, and 
with the patch they raise errors instead:

import sys; sys.flags.__new__(type(sys.flags))
import sys; sys.version_info.__new__(type(sys.version_info))
import sys; sys.getwindowsversion().__new__(type(sys.getwindowsversion()))

One important caveat is that while I confirmed the sys.getwindowsversion 
segfault on Windows, I don't have Visual Studio set up so I couldn't build and 
test the new test for sys.getwindowsversion (I ran the full test suite on OSX, 
where this test is skipped).

----------
keywords: +needs review
nosy: +jesstess
versions: +Python 3.5 -Python 3.2, Python 3.3
Added file: http://bugs.python.org/file35068/issue13204.patch

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue13204>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to