[issue3859] test_sys.Sizeof fails on win64

2008-09-16 Thread Robert Schuppenies
Robert Schuppenies [EMAIL PROTECTED] added the comment: Fixed in r66480. -- resolution: - fixed status: open - closed ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3859 ___

[issue3859] test_sys.Sizeof fails on win64

2008-09-14 Thread Benjamin Peterson
Benjamin Peterson [EMAIL PROTECTED] added the comment: Looks good to me. -- keywords: -needs review nosy: +benjamin.peterson ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3859 ___

[issue3859] test_sys.Sizeof fails on win64

2008-09-13 Thread Amaury Forgeot d'Arc
New submission from Amaury Forgeot d'Arc [EMAIL PROTECTED]: the AMD64 W2k8 3.0 buildbot always fail test_sys: ... check(range(66000), size(h + '3l')) ... AssertionError: wrong size for class 'range': got 56, expected 48 The previous line of the test is: check(range(1), size(h + '3P'))

[issue3859] test_sys.Sizeof fails on win64

2008-09-13 Thread Benjamin Peterson
Changes by Benjamin Peterson [EMAIL PROTECTED]: -- assignee: - schuppenies nosy: +schuppenies ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3859 ___

[issue3859] test_sys.Sizeof fails on win64

2008-09-13 Thread Robert Schuppenies
Robert Schuppenies [EMAIL PROTECTED] added the comment: You are right, it should be '3P'. When merging to py3k I changed the previous line, but not the one causing trouble. -- keywords: +patch Added file: http://bugs.python.org/file11486/test_sys.patch