Message8055

Author pjenvey
Recipients pjenvey, wchang
Date 2013-06-28.19:22:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1372447344.21.0.989466183769.issue2064@psf.upfronthosting.co.za>
In-reply-to
Content
your isinstance calls are checking against the *type* you've created. Your type 'c' is not an instance of java.io.File. However an actual instance of 'c' is (isinstance(c(), java.io.File) would be True).

c's only a subclass of File: i.e. issubclass(c, java.io.File)
History
Date User Action Args
2013-06-28 19:22:24pjenveysetmessageid: <1372447344.21.0.989466183769.issue2064@psf.upfronthosting.co.za>
2013-06-28 19:22:24pjenveysetrecipients: + pjenvey, wchang
2013-06-28 19:22:24pjenveylinkissue2064 messages
2013-06-28 19:22:24pjenveycreate