Message5036

Author pjenvey
Recipients cgroves, lijihuai, pjenvey
Date 2009-08-16.00:55:22
SpamBayes Score 3.6662266e-07
Marked as misclassified No
Message-id <1250384122.63.0.812454638642.issue1430@psf.upfronthosting.co.za>
In-reply-to
Content
I narrowed this down since I could reproduce it. Basically one of the 
classes in the chain isn't public but overrides 
java.sql.Connection.close. That combined with the interfaces having 
their own different close method causes the java.sql.Connection.close to 
not show up

Extract the tar ball and run:
$ jython test.py 
nargs: 1
interface SpecialConnection, false, 0, public abstract void 
SpecialConnection.close(int)
	(int, )
None
Traceback (most recent call last):
  File "test.py", line 4, in <module>
    c.close()
TypeError: close(): expected 1 args; got 0
History
Date User Action Args
2009-08-16 00:55:22pjenveysetmessageid: <1250384122.63.0.812454638642.issue1430@psf.upfronthosting.co.za>
2009-08-16 00:55:22pjenveysetrecipients: + pjenvey, cgroves, lijihuai
2009-08-16 00:55:22pjenveylinkissue1430 messages
2009-08-16 00:55:22pjenveycreate