Message7443

Author amak
Recipients Arfrever, amak, fwierzbicki, thijs
Date 2012-08-28.21:24:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1346189069.2.0.417469038095.issue1956@psf.upfronthosting.co.za>
In-reply-to
Content
When I checkout the twisted trunk and try to run it with cpython (without having done a proper setup.py install), I get the following error

C:\>C:\Python27\python
Python 2.7.3 (default, Apr 10 2012, 23:31:26) [MSC v.1500 32 bit (Intel)] on win32
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>
  File "C:\temp\trunk\twisted\scripts\trial.py", line 9, in <module>
    from twisted.internet import defer
  File "C:\temp\trunk\twisted\internet\defer.py", line 25, in <module>
    from twisted.python import log, failure, lockfile
  File "C:\temp\trunk\twisted\python\log.py", line 17, in <module>
    from zope.interface import Interface
ImportError: No module named zope.interface
>>> ^Z

And I see that we have an issue in our bug tracker for zope.interface, related to pyopenssl, although I don't know if that is the cause of this problem.

Issue with zope.interface
http://bugs.jython.org/issue1195

Does zope.interface run on jython? Are you using other parts of twisted successfully on jython?

Here is a blog post from 2008 (by Martijn Faassen) discussing porting zope.interface to jython.

http://faassen.n--tree.net/blog/view/weblog/2008/04/14/0

Although I don't know what the status of that effort is?

This Twisted ticket says that jython support was removed in 2009

http://twistedmatrix.com/trac/ticket/3725

I don't know if it's been reinstated?

I think you should contact the twisted folks and ask them if they expect twisted to run on jython, and if they do, which bits of it?

If you do contact them, please post a link on this ticket.
History
Date User Action Args
2012-08-28 21:24:29amaksetmessageid: <1346189069.2.0.417469038095.issue1956@psf.upfronthosting.co.za>
2012-08-28 21:24:29amaksetrecipients: + amak, fwierzbicki, thijs, Arfrever
2012-08-28 21:24:29amaklinkissue1956 messages
2012-08-28 21:24:28amakcreate