[issue17531] test_grp and test_pwd fail with 32-bit builds on OS X systems

2013-03-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset 87d266988905 by Benjamin Peterson in branch '2.7': update NEWS for #17531 http://hg.python.org/cpython/rev/87d266988905 -- ___ Python tracker _

[issue17531] test_grp and test_pwd fail with 32-bit builds on OS X systems

2013-03-23 Thread Ned Deily
Ned Deily added the comment: a4dbe53577cb appears to fix the latter problem. Thanks! -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker ___

[issue17531] test_grp and test_pwd fail with 32-bit builds on OS X systems

2013-03-23 Thread Benjamin Peterson
Benjamin Peterson added the comment: Whack, whack. a4dbe53577cb -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue17531] test_grp and test_pwd fail with 32-bit builds on OS X systems

2013-03-23 Thread Ned Deily
Ned Deily added the comment: That fixes the test for nobody (-2). Now the next part of the test fails more seriously for nogroup (-1). Simplifying: 2.7.3 $ arch -i386 /usr/local/bin/python2.7 -c 'import grp; g=grp.getgrnam("nogroup").gr_gid; print(grp.getgrgid(g),type(g))' (grp.struct_group(g

[issue17531] test_grp and test_pwd fail with 32-bit builds on OS X systems

2013-03-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset c982393bea4e by Benjamin Peterson in branch '2.7': group ids and user ids can be longs now (#17531) http://hg.python.org/cpython/rev/c982393bea4e -- ___ Python tracker

[issue17531] test_grp and test_pwd fail with 32-bit builds on OS X systems

2013-03-23 Thread Benjamin Peterson
Benjamin Peterson added the comment: I think the tests are wrong. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue17531] test_grp and test_pwd fail with 32-bit builds on OS X systems

2013-03-23 Thread Benjamin Peterson
Benjamin Peterson added the comment: No, that was wrong, sorry. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue17531] test_grp and test_pwd fail with 32-bit builds on OS X systems

2013-03-23 Thread Benjamin Peterson
Benjamin Peterson added the comment: I hope that does it? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue17531] test_grp and test_pwd fail with 32-bit builds on OS X systems

2013-03-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset 2aa817e0a645 by Benjamin Peterson in branch '2.7': return int instead long when possible (#17531) http://hg.python.org/cpython/rev/2aa817e0a645 -- nosy: +python-dev ___ Python tracker

[issue17531] test_grp and test_pwd fail with 32-bit builds on OS X systems

2013-03-23 Thread Ned Deily
Ned Deily added the comment: Failure also seen on 32-bit buildbot: http://buildbot.python.org/all/builders/x86%20Tiger%202.7 -- ___ Python tracker ___ ___

[issue17531] test_grp and test_pwd fail with 32-bit builds on OS X systems

2013-03-23 Thread Ned Deily
New submission from Ned Deily: With the changes introduced for Issue4591, test_grp and test_pwd now fail on OS X systems when Python is run in 32-bit mode. Previously, using a 64-bit/32-bit universal build of 2.7.3: $ arch -i386 /usr/local/bin/python2.7 -c 'import grp; g=grp.getgrnam("nobody"