Message7354

Author thijs
Recipients thijs
Date 2012-08-08.12:43:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1344429818.97.0.597066571125.issue1956@psf.upfronthosting.co.za>
In-reply-to
Content
For some reason it's not possible to import modules from twisted.scripts with jython, cpython's working fine. This is using Twisted 12.1+.

$ python
Python 2.7.3 (default, Apr 20 2012, 22:39:59) 
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from twisted.scripts import trial
>>>

$ jython
Jython 2.7.0a2+ (default:96bc2fa235a0, Aug 8 2012, 14:26:20) 
[OpenJDK 64-Bit Server VM (Sun Microsystems Inc.)] on java1.6.0_24
Type "help", "copyright", "credits" or "license" for more information.
>>> from twisted.scripts import trial
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: cannot import name trial
>>>
History
Date User Action Args
2012-08-08 12:43:39thijssetrecipients: + thijs
2012-08-08 12:43:38thijssetmessageid: <1344429818.97.0.597066571125.issue1956@psf.upfronthosting.co.za>
2012-08-08 12:43:38thijslinkissue1956 messages
2012-08-08 12:43:37thijscreate