This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: test_sys has started failing
Type: behavior Stage:
Components: Library (Lib) Versions: Python 3.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: eric.araujo, vinay.sajip
Priority: normal Keywords:

Created on 2012-02-20 00:45 by vinay.sajip, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (4)
msg153741 - (view) Author: Vinay Sajip (vinay.sajip) * (Python committer) Date: 2012-02-20 00:45
vinay@eta-natty:~/tools/cpython$ ./python Lib/test/regrtest.py test_sys
[1/1] test_sys
test test_sys failed -- Traceback (most recent call last):
  File "/home/vinay/tools/cpython/Lib/test/test_sys.py", line 737, in test_objecttypes
    class c():
  File "/home/vinay/tools/cpython/Lib/test/test_sys.py", line 745, in c
    check(foo, size(h + 'P'))
  File "/home/vinay/tools/cpython/Lib/test/test_sys.py", line 616, in check_sizeof
    self.assertEqual(result, size, msg)
AssertionError: 28 != 24 : wrong size for <class 'staticmethod'>: got 28, expected 24

1 test failed:
    test_sys

Failure on Ubuntu Natty (32-bit) and also occurs on Mac OS X 10.5.8.
msg153742 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2012-02-20 00:47
I think Benjamin just fixed that.
msg153743 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2012-02-20 00:47
http://hg.python.org/cpython/rev/ecaf7ace5169
msg153775 - (view) Author: Vinay Sajip (vinay.sajip) * (Python committer) Date: 2012-02-20 10:59
Yep, works now.
History
Date User Action Args
2022-04-11 14:57:26adminsetgithub: 58266
2012-02-20 10:59:40vinay.sajipsetstatus: open -> closed
resolution: fixed
messages: + msg153775
2012-02-20 00:47:40eric.araujosetmessages: + msg153743
2012-02-20 00:47:01eric.araujosetnosy: + eric.araujo
messages: + msg153742
2012-02-20 00:45:46vinay.sajipcreate