[issue16847] sha module broken

2013-01-03 Thread Ronald Oussoren
Ronald Oussoren added the comment: That's quick, thank :-). -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16847] sha module broken

2013-01-03 Thread Christian Heimes
Changes by Christian Heimes : -- assignee: christian.heimes -> resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker ___ _

[issue16847] sha module broken

2013-01-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset 944e86223d1f by Christian Heimes in branch '3.3': Issue #16847: Fixed improper use of _PyUnicode_CheckConsistency() in http://hg.python.org/cpython/rev/944e86223d1f New changeset 4b42d7f288c5 by Christian Heimes in branch 'default': Issue #16847: Fi

[issue16847] sha module broken

2013-01-02 Thread Christian Heimes
Christian Heimes added the comment: The problem can only occur when you compile a non-pydebug build with the -DDEBUG flag instead the -DNDEBUG flag. With -DNDEBUG the assert() call doesn't do anything and the function call is removed by the preprocessor. I'll fix it later. -- assignee

[issue16847] sha module broken

2013-01-02 Thread Ned Deily
Ned Deily added the comment: FWIW, a build of current top-of-branch 3.3 using the same configure command and in a subdirectory (../configure) seemed to work fine on 10.8.2 with Xcode 4.5.2. And I've not seen the issue with other recent builds of default. -- nosy: +ned.deily _

[issue16847] sha module broken

2013-01-02 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +haypo versions: +Python 3.4 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue16847] sha module broken

2013-01-02 Thread Ronald Oussoren
New submission from Ronald Oussoren: On OSX 10.8 with the following configure line and a fresh checkout (as of 10 minutes ago): '../configure' '--enable-framework' '--enable-universalsdk=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk' '--wi