[issue21781] make _ssl module 64-bit clean

2014-07-07 Thread Zachary Ware
Zachary Ware added the comment: Looks good now, thanks for the quick fix, Victor! -- resolution: -> fixed stage: -> resolved status: open -> closed type: -> behavior versions: +Python 3.4 ___ Python tracker

[issue21781] make _ssl module 64-bit clean

2014-07-07 Thread STINNER Victor
STINNER Victor added the comment: > This appears to have broken 64-bit Windows Correct, I missed a call to Py_BuildValue() which uses the s# format. It's now fixed. Thanks for the report! I keep the issue open until the buildbot turns green again. -- _

[issue21781] make _ssl module 64-bit clean

2014-07-07 Thread Roundup Robot
Roundup Robot added the comment: New changeset 34a0d98c51ea by Victor Stinner in branch '3.4': Issue #21781, _ssl: Fix asn1obj2py() on Windows 64-bit, "s#" format requires http://hg.python.org/cpython/rev/34a0d98c51ea New changeset 1dca2e7ad5ad by Victor Stinner in branch 'default': (Merge 3.4)

[issue21781] make _ssl module 64-bit clean

2014-07-07 Thread Zachary Ware
Zachary Ware added the comment: This appears to have broken 64-bit Windows: http://buildbot.python.org/all/builders/AMD64%20Windows7%20SP1%203.x/builds/4745 -- nosy: +zach.ware resolution: fixed -> status: closed -> open ___ Python tracker

[issue21781] make _ssl module 64-bit clean

2014-07-01 Thread STINNER Victor
Changes by STINNER Victor : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue21781] make _ssl module 64-bit clean

2014-07-01 Thread Roundup Robot
Roundup Robot added the comment: New changeset 26afcb8a87b9 by Victor Stinner in branch 'default': (Merge 3.4) Issue #21781: Make the ssl module "ssize_t clean" for parsing http://hg.python.org/cpython/rev/26afcb8a87b9 -- ___ Python tracker

[issue21781] make _ssl module 64-bit clean

2014-07-01 Thread Roundup Robot
Roundup Robot added the comment: New changeset 36e884e65e45 by Victor Stinner in branch '3.4': Issue #21781: Make the ssl module "ssize_t clean" for parsing parameters. http://hg.python.org/cpython/rev/36e884e65e45 -- nosy: +python-dev ___ Python trac

[issue21781] make _ssl module 64-bit clean

2014-06-16 Thread STINNER Victor
New submission from STINNER Victor: Follow-up of issue #8677: patch to make the _ssl module 64-bit clean. -- files: ssl_64bit.patch keywords: patch messages: 220736 nosy: haypo priority: normal severity: normal status: open title: make _ssl module 64-bit clean versions: Python 3.5 Added