user1092106
user1092106

Reputation: 13

Twisted work with Python 3.3?

i use py3.3.2 and Twisted 15 on win7 and get this error

Traceback (most recent call last):
  File "C:\Users\coder\Desktop\s.py", line 1, in <module>
    from twisted.internet import protocol, reactor, endpoints
  File "D:\Python33\lib\site-packages\twisted\internet\protocol.py", line 18, in <module>
    from twisted.internet import interfaces, error, defer
  File "D:\Python33\lib\site-packages\twisted\internet\defer.py", line 29, in <module>
    from twisted.python import lockfile, log, failure
  File "D:\Python33\lib\site-packages\twisted\python\lockfile.py", line 52, in <module>
    _open = file
NameError: name 'file' is not defined
>>> 

Upvotes: 0

Views: 863

Answers (1)

Glyph
Glyph

Reputation: 31860

Twisted does not currently have continuous integration for Windows on Python 3; the only supported platform with Python 3 test coverage is Ubuntu. Please file a bug at https://twistedmatrix.com/.

In the meanwhile, please use Python 2.7 for Windows to use Twisted there.

Upvotes: 3

Related Questions