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.

Author mark.dickinson
Recipients mark.dickinson, ronaldoussoren
Date 2010-02-18.15:29:53
SpamBayes Score 4.7481134e-08
Marked as misclassified No
Message-id <1266506997.43.0.181933833727.issue7958@psf.upfronthosting.co.za>
In-reply-to
Content
With a 64-bit debug non-framework builds of the trunk and py3k, on OS X 10.6, I'm consistently getting the following failure in test_platform:

trunk dickinsm$ ./python.exe Lib/test/regrtest.py -uall test_platform
test_platform
[18064 refs]
'import site' failed; use -v for traceback
Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/Users/dickinsm/python/svn/trunk/Lib/platform.py", line 1017, in architecture
    import struct
  File "/Users/dickinsm/python/svn/trunk/Lib/struct.py", line 1, in <module>
    from _struct import *
ImportError: No module named _struct
[17485 refs]
test test_platform failed -- Traceback (most recent call last):
  File "/Users/dickinsm/python/svn/trunk/Lib/test/test_platform.py", line 24, in test_architecture_via_symlink
    self.assertEqual(get(real), get(link))
AssertionError: Tuples differ: ("('64bit', '')\n", None) != ('', None)

First differing element 0:
('64bit', '')



- ("('64bit', '')\n", None)
+ ('', None)

1 test failed:
    test_platform
[36722 refs]
History
Date User Action Args
2010-02-18 15:29:57mark.dickinsonsetrecipients: + mark.dickinson, ronaldoussoren
2010-02-18 15:29:57mark.dickinsonsetmessageid: <1266506997.43.0.181933833727.issue7958@psf.upfronthosting.co.za>
2010-02-18 15:29:54mark.dickinsonlinkissue7958 messages
2010-02-18 15:29:53mark.dickinsoncreate