Hi All When I tried to run a simple twisted program and noticed there was an error as following:
File "C:\Python34\lib\site-packages\twisted\python\lockfile.py", line 52,
in <module>
_open = file
NameError: name 'file' is not defined
simply replace file as open like
_open = open
can run the program.
Is it a bug?
Regards
gelin yan
_______________________________________________ Twisted-Python mailing list [email protected] http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python
