[issue15000] _posixsubprocess module broken on x32

2012-06-05 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- stage: patch review -> committed/rejected ___ Python tracker ___ ___ Python-bugs-l

[issue15000] _posixsubprocess module broken on x32

2012-06-05 Thread Gregory P. Smith
Changes by Gregory P. Smith : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue15000] _posixsubprocess module broken on x32

2012-06-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset aa9cfeea07ad by Gregory P. Smith in branch '3.2': Fixes issue #15000: support the odd x32 abi on posixsubprocess's system call. http://hg.python.org/cpython/rev/aa9cfeea07ad New changeset 5a4d5e714d08 by Gregory P. Smith in branch 'default': Fixes

[issue15000] _posixsubprocess module broken on x32

2012-06-05 Thread Mike Frysinger
Mike Frysinger added the comment: a uint64_t would fix it for x86_64, but break it most 32bit systems as sizeof(unsigned long) == 32bit for them -- ___ Python tracker ___ _

[issue15000] _posixsubprocess module broken on x32

2012-06-05 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: Would a uint64_t be recommended in this case? -- nosy: +amaury.forgeotdarc ___ Python tracker ___ ___

[issue15000] _posixsubprocess module broken on x32

2012-06-05 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever stage: -> patch review title: posixsubprocess module broken on x32 -> _posixsubprocess module broken on x32 versions: +Python 3.3 ___ Python tracker