Issue1239

classification
Title: Package scanning seems to depend on import order in jython-2.5b1
Type: behaviour Severity: normal
Components: Core Versions: 2.5b1
Milestone:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: fwierzbicki Nosy List: fwierzbicki, gidiko
Priority: Keywords:

Created on 2009-01-17.02:20:54 by gidiko, last changed 2009-01-22.02:37:23 by fwierzbicki.

Files
File name Uploaded Description Edit Remove
scanbug.py gidiko, 2009-01-17.02:20:53 run this file aunder 2.2.1 and 2.5b1
Messages
msg4051 (view) Author: (gidiko) Date: 2009-01-17.02:20:53
Under jython-2.2.1 running the attached scanbug.py yields:

giorgos@feynman:/tmp$ ~/packages/jython-2.2.1/jython scanbug.py
*sys-package-mgr*: processing new jar, '/tmp/activemq-all-5.2.0.jar'
org.apache.activemq.broker.BrokerService
javax.jms.Message
javax.jms.Message
org.apache.activemq.broker.BrokerService

However doing the same with jython-2.5b1 seems to imply an erroneous
dependence on import order:

giorgos@feynman:/tmp$ ~/packages/jython-2.5b1/jython scanbug.py
failed
*sys-package-mgr*: processing new jar, '/tmp/activemq-all-5.2.0.jar'
<type 'javax.jms.Message'>
<type 'org.apache.activemq.broker.BrokerService'>
msg4064 (view) Author: Frank Wierzbicki (fwierzbicki) Date: 2009-01-22.02:37:22
fixed as of r5956
History
Date User Action Args
2009-01-22 02:37:23fwierzbickisetstatus: open -> closed
resolution: fixed
messages: + msg4064
2009-01-17 22:42:18fwierzbickisetassignee: fwierzbicki
nosy: + fwierzbicki
2009-01-17 02:22:31gidikosettitle: Pacakage scanning seems to depends on import order in jython-2.5b1 -> Package scanning seems to depend on import order in jython-2.5b1
2009-01-17 02:20:54gidikocreate