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 blokeley
Recipients blokeley, pitrou, r.david.murray, rhettinger, terry.reedy
Date 2011-04-29.08:59:37
SpamBayes Score 1.5554225e-13
Marked as misclassified No
Message-id <1304067582.61.0.184647295489.issue11344@psf.upfronthosting.co.za>
In-reply-to
Content
The unit tests on the cpython tip revision fail even before applying my patches and I'm afraid haven't got the time to debug the threading module or existing unit tests.

The traceback is:

C:\workspace\cpython\Lib\test> C:\Python32\python.exe test_ntpath.py

Traceback (most recent call last):
  File "test_ntpath.py", line 4, in <module>
    from test.support import TestFailed
  File "C:\workspace\cpython\Lib\test\support.py", line 14, in <module>
    import shutil
  File "C:\workspace\cpython\Lib\shutil.py", line 17, in <module>
    import bz2
  File "C:\workspace\cpython\Lib\bz2.py", line 13, in <module>
    import threading
  File "C:\workspace\cpython\Lib\threading.py", line 34, in <module>
    _info = _thread.info
AttributeError: 'module' object has no attribute 'info'


It happens with cpython hg rev 8eb794bbb967

If there's a quick fix for this, please advise and I'll get working. 

If not, I'll probably not have the time to fix it myself and then write the os.path.splitpath patches as well which would be a pity.
History
Date User Action Args
2011-04-29 08:59:42blokeleysetrecipients: + blokeley, rhettinger, terry.reedy, pitrou, r.david.murray
2011-04-29 08:59:42blokeleysetmessageid: <1304067582.61.0.184647295489.issue11344@psf.upfronthosting.co.za>
2011-04-29 08:59:38blokeleylinkissue11344 messages
2011-04-29 08:59:37blokeleycreate