[issue13750] queue broken when built without-thread

Charles-François Natali report at bugs.python.org
Mon Jan 9 20:45:10 CET 2012


New submission from Charles-François Natali <neologix at free.fr>:

Commit 190ad17f5a87481a006434a2a3d3a8e1e954a6db broke the fedora without-threads buildbot:
"""
./python  ./Tools/scripts/run_tests.py -j 1 -u all -W --timeout=3600 
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.krah-fedora/build/Lib/queue.py", line 4, in <module>
    import threading
  File "/home/buildbot/buildarea/3.x.krah-fedora/build/Lib/threading.py", line 4, in <module>
    import _thread
ImportError: No module named '_thread'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "./Tools/scripts/run_tests.py", line 12, in <module>
    import test.support
  File "/home/buildbot/buildarea/3.x.krah-fedora/build/Lib/test/support.py", line 25, in <module>
    import logging.handlers
  File "/home/buildbot/buildarea/3.x.krah-fedora/build/Lib/logging/handlers.py", line 30, in <module>
    import queue
  File "/home/buildbot/buildarea/3.x.krah-fedora/build/Lib/queue.py", line 6, in <module>
    import dummythreading as threading
ImportError: No module named 'dummythreading'
[76890 refs]
make: *** [buildbottest] Error 1
"""

See http://python.org/dev/buildbot/all/builders/AMD64%20Fedora%20without%20threads%203.x/builds/1333/steps/test/logs/stdio

----------
components: Library (Lib)
messages: 150970
nosy: neologix, rhettinger
priority: normal
severity: normal
stage: needs patch
status: open
title: queue broken when built without-thread
type: behavior

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue13750>
_______________________________________


More information about the Python-bugs-list mailing list