Issue1574

classification
Title: Broken threading.py
Type: crash Severity: normal
Components: Library Versions: 2.5.1
Milestone:
process
Status: closed Resolution: invalid
Dependencies: Superseder:
Assigned To: Nosy List: alex.gronholm, avincon
Priority: Keywords:

Created on 2010-03-17.10:55:11 by avincon, last changed 2010-03-18.18:02:09 by fwierzbicki.

Messages
msg5572 (view) Author: avincon (avincon) Date: 2010-03-17.10:55:10
Importing threading.py causes a "No module named _threading" error in jython 2.5.1. 

This error does not occur with jython 2.5.0.

Here is a copy of the command line:

Jython 2.5b3 (Release_2_5beta3:6092, Mar 10 2009, 15:34:57)
[Java HotSpot(TM) Client VM (Sun Microsystems Inc.)] on java1.6.0_18
Type "help", "copyright", "credits" or "license" for more information.
>>> import threading
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "C:\jython2.5.1\Lib\threading.py", line 8, in <module>
    from _threading import Lock, RLock, Condition, _Lock, _RLock
ImportError: No module named _threading
>>>
msg5573 (view) Author: Alex Grönholm (alex.gronholm) Date: 2010-03-17.18:52:55
Why does your Jython version string say 2.5b3?
"import threading" works fine in 2.5.1, I just verified it. This bug report is bogus.
History
Date User Action Args
2010-03-18 18:02:09fwierzbickisetstatus: open -> closed
resolution: invalid
2010-03-17 18:52:55alex.gronholmsetnosy: + alex.gronholm
messages: + msg5573
2010-03-17 10:55:11avinconcreate