[Twisted-Python] txws.py websocket and Python 2.4

matusis at yahoo.com matusis at yahoo.com
Thu Apr 12 18:22:31 EDT 2012


Maybe you could commit that?

 

try:

    #python 2.6+

    from hashlib import md5, sha1

except ImportError:

    import md5

    from sha import sha as sha1

 

 

protocol = "self.isSecure() and wss" or "ws"

 

 

That would help to people with 2.4!

 

From: Corbin Simpson [mailto:mostawesomedude at gmail.com] 
Sent: Thursday, April 12, 2012 3:18 PM
To: matusis at yahoo.com
Subject: Re: txws.py websocket and Python 2.4

 

Yeah, definitely.

On Apr 12, 2012 3:16 PM, <matusis at yahoo.com> wrote:

I do not quite know the most recent status of txws.py, whether it is being
merged to Twisted or not. 

But I noticed that it has it has two incompatibilities with Python 2.4:

1.       from hashlib import md5, sha1

2.       protocol = "wss" if self.isSecure() else "ws"

 

After fixing those, it works on 2.4.

Would it make sense to make that change on github?

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://twistedmatrix.com/pipermail/twisted-python/attachments/20120412/d0eb2303/attachment.htm 


More information about the Twisted-Python mailing list