[issue27571] 3.6 Seems to be ignoring the _sodium pyd file made with pip.

2016-07-19 Thread Zachary Ware
Zachary Ware added the comment: I have confirmed that this is not a Python issue. PyNaCl takes some special coercion and a third-party library to build (see https://github.com/pyca/pynacl/issues/165), but I managed to get it to build with 3.5.1 and 3.6 and imported nacl._sodium in both with n

[issue27571] 3.6 Seems to be ignoring the _sodium pyd file made with pip.

2016-07-19 Thread Decorater
Decorater added the comment: Commenting* -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue27571] 3.6 Seems to be ignoring the _sodium pyd file made with pip.

2016-07-19 Thread Decorater
Decorater added the comment: hmm unless it has something to do with only my bot's debug command doing the following as it seems it could possible be only my bot's debug command however commenting out 1 thing in Discord.py also generates this Issue. Debug Command Code: https://bpaste.net/show/9

[issue27571] 3.6 Seems to be ignoring the _sodium pyd file made with pip.

2016-07-19 Thread Brett Cannon
Brett Cannon added the comment: Anything is possible, but I'm not aware of any big changes in extension loading in 3.6. Would need a test case to verify. -- ___ Python tracker _

[issue27571] 3.6 Seems to be ignoring the _sodium pyd file made with pip.

2016-07-19 Thread Steve Dower
Steve Dower added the comment: Any chance this is a regression in the "extension module within a package" issue we saw during 3.5? There's a pretty relevant difference between: >>> import nacl._sodium >>> import _cffi_backend -- ___ Python tracker

[issue27571] 3.6 Seems to be ignoring the _sodium pyd file made with pip.

2016-07-19 Thread Brett Cannon
Brett Cannon added the comment: If it's only affecting a single library then chances are it's not Python's fault. -- components: +Windows nosy: +brett.cannon, paul.moore, steve.dower, tim.golden, zach.ware resolution: -> third party status: open -> closed _

[issue27571] 3.6 Seems to be ignoring the _sodium pyd file made with pip.

2016-07-19 Thread Decorater
Decorater added the comment: It dooes work foor _cffi_backend however on reading it so this issue is only on nacl._sodium then. -- title: 3.6 Seems to be ignoring all pyd's installed and compiled by pip -> 3.6 Seems to be ignoring the _sodium pyd file made with pip. __