[issue30192] hashlib module breaks with 64-bit kernel and 32-bit user space

2017-06-15 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- resolution: -> fixed stage: backport needed -> resolved status: open -> closed ___ Python tracker ___ ___

[issue30192] hashlib module breaks with 64-bit kernel and 32-bit user space

2017-06-09 Thread Neil Schemenauer
Changes by Neil Schemenauer : -- pull_requests: +2105 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue30192] hashlib module breaks with 64-bit kernel and 32-bit user space

2017-06-09 Thread Neil Schemenauer
Neil Schemenauer added the comment: Create PR 2042 for backport to 3.6 branch. -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue30192] hashlib module breaks with 64-bit kernel and 32-bit user space

2017-05-05 Thread Berker Peksag
Changes by Berker Peksag : -- stage: patch review -> backport needed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue30192] hashlib module breaks with 64-bit kernel and 32-bit user space

2017-05-05 Thread Neil Schemenauer
Neil Schemenauer added the comment: It should be backported in my opinion. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue30192] hashlib module breaks with 64-bit kernel and 32-bit user space

2017-05-04 Thread Berker Peksag
Berker Peksag added the comment: Neil, can this issue be closed or do you want to backport to 3.6? -- nosy: +berker.peksag ___ Python tracker ___

[issue30192] hashlib module breaks with 64-bit kernel and 32-bit user space

2017-05-01 Thread Christian Heimes
Christian Heimes added the comment: The issues seems to be resolved. In the future please add the expert for a topic or maintainer of a module to the nosy list of the ticket. -- nosy: +christian.heimes ___ Python tracker

[issue30192] hashlib module breaks with 64-bit kernel and 32-bit user space

2017-04-27 Thread Neil Schemenauer
Changes by Neil Schemenauer : -- pull_requests: +1440 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue30192] hashlib module breaks with 64-bit kernel and 32-bit user space

2017-04-27 Thread Neil Schemenauer
New submission from Neil Schemenauer: The test in setup.py to check for SSE2 support is incorrect. Checking that arch == x86_64 is not sufficient. If the kernel is 64-bit but Python is compiled with a 32-bit compiler, the _blake2 module will fail to build. The attached patch fixes this issue