Re: [Twisted-Python] An error occurred with twisted 15.2.1 & python 3.4.3 on windows

2015-07-29 Thread Ray Cote
On Tue, Jul 28, 2015 at 8:38 PM, Glyph Lefkowitz wrote: > No. For this reason, technically Twisted only supports Python 3 on > Linux. Does anyone feel like volunteering to set up a 3 builder? I wonder > if HawkOwl has already done this... > I know I don't have the personal bandwidth to deploy

Re: [Twisted-Python] An error occurred with twisted 15.2.1 & python 3.4.3 on windows

2015-07-28 Thread Amber "Hawkie" Brown
> On 29 Jul 2015, at 10:38, Glyph Lefkowitz wrote: > >> >> On Jul 28, 2015, at 3:29 AM, Gelin Yan wrote: >> >> >> >> On Tue, Jul 28, 2015 at 3:46 PM, Tristan Seligmann >> wrote: >> On Mon, 27 Jul 2015 at 13:18 Gelin Yan wrote: >> Is it a bug? >> >> Yes; see https://twistedmatrix.com/t

Re: [Twisted-Python] An error occurred with twisted 15.2.1 & python 3.4.3 on windows

2015-07-28 Thread Glyph Lefkowitz
> On Jul 28, 2015, at 3:29 AM, Gelin Yan wrote: > > > > On Tue, Jul 28, 2015 at 3:46 PM, Tristan Seligmann > wrote: > On Mon, 27 Jul 2015 at 13:18 Gelin Yan > wrote: > Is it a bug? > > Yes; see https://twistedmatrix.com/trac/tick

Re: [Twisted-Python] An error occurred with twisted 15.2.1 & python 3.4.3 on windows

2015-07-28 Thread Gelin Yan
On Tue, Jul 28, 2015 at 3:46 PM, Tristan Seligmann wrote: > On Mon, 27 Jul 2015 at 13:18 Gelin Yan wrote: > >> Is it a bug? >> > > Yes; see https://twistedmatrix.com/trac/ticket/7626 for more details. > > ___ > Twisted-Python mailing list > Twisted-P

Re: [Twisted-Python] An error occurred with twisted 15.2.1 & python 3.4.3 on windows

2015-07-28 Thread Tristan Seligmann
On Mon, 27 Jul 2015 at 13:18 Gelin Yan wrote: > Is it a bug? > Yes; see https://twistedmatrix.com/trac/ticket/7626 for more details. ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/tw

[Twisted-Python] An error occurred with twisted 15.2.1 & python 3.4.3 on windows

2015-07-27 Thread Gelin Yan
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 _open = file NameError: name 'file' is not defined simply replace file as open like _open = open can run