[issue17228] Building without PYMALLOC fails

2013-02-20 Thread Roundup Robot
Roundup Robot added the comment: New changeset 470350fd2831 by Benjamin Peterson in branch '3.3': fix building without pymalloc (closes #17228) http://hg.python.org/cpython/rev/470350fd2831 New changeset 67fa0643751d by Benjamin Peterson in branch '2.7': fix building without pymalloc (closes #17

[issue17228] Building without PYMALLOC fails

2013-02-19 Thread Brett Cannon
Brett Cannon added the comment: Why not define uint for the whole file regardless of PYMALLOC? -- nosy: +brett.cannon ___ Python tracker ___ _

[issue17228] Building without PYMALLOC fails

2013-02-19 Thread Dirkjan Ochtman
Changes by Dirkjan Ochtman : -- nosy: +djc ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue17228] Building without PYMALLOC fails

2013-02-19 Thread Dirkjan Ochtman
Changes by Dirkjan Ochtman : -- nosy: +hynek, ned.deily, ronaldoussoren ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue17228] Building without PYMALLOC fails

2013-02-18 Thread Richard Yao
New submission from Richard Yao: The preprocessor definition for uint is only defined when building with PYMALLOC, which breaks builds without PYMALLOC. There is a Gentoo bug report on this issue: https://bugs.gentoo.org/show_bug.cgi?id=458168 I have attached a patch that I wrote that resolve