[issue21892] hashtable.c not using PY_FORMAT_SIZE_T

2014-07-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6fb1e2ce513a by Victor Stinner in branch '3.4': Issue #21892, #21893: Partial revert of changeset 4f55e802baf0, PyErr_Format() http://hg.python.org/cpython/rev/6fb1e2ce513a New changeset 58cd562e3ef9 by Victor Stinner in branch 'default': (Merge

[issue21892] hashtable.c not using PY_FORMAT_SIZE_T

2014-07-01 Thread Ned Deily
Changes by Ned Deily n...@acm.org: -- nosy: +haypo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21892 ___ ___ Python-bugs-list mailing list

[issue21892] hashtable.c not using PY_FORMAT_SIZE_T

2014-07-01 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4f55e802baf0 by Victor Stinner in branch '3.4': Closes #21892, #21893: Use PY_FORMAT_SIZE_T instead of %zi or %zu to format C http://hg.python.org/cpython/rev/4f55e802baf0 New changeset 669b43bffd87 by Victor Stinner in branch 'default': (Merge

[issue21892] hashtable.c not using PY_FORMAT_SIZE_T

2014-07-01 Thread STINNER Victor
STINNER Victor added the comment: Oh, I forgot the mention John Malmberg in the changelog, sorry :-( Thanks for your fix John. -- stage: resolved - ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21892

[issue21892] hashtable.c not using PY_FORMAT_SIZE_T

2014-07-01 Thread Berker Peksag
Changes by Berker Peksag berker.pek...@gmail.com: -- stage: - resolved ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21892 ___ ___

[issue21892] hashtable.c not using PY_FORMAT_SIZE_T

2014-06-30 Thread John Malmberg
New submission from John Malmberg: hashtable.c is using %zd instead of the PY_FORMAT_SIZE_T as set by configure. Comments in pymacconfig.h state that this will cause problems on OS-X 10.4 with binaries build on OS-X 10.5. The attached patch hashtable.giff changes hashtable.c to be like the