We have a pile of enthusiastic Google Summer of Code applicants, and not
enough mentors at the moment. Anyone interested in mentoring a student
or two over the summer? If so, email me ASAP.
Thanks!
___
Twisted-Python mailing list
Twisted-Python@twiste
On Thu, Apr 12, 2012 at 2:53 PM, Itamar Turner-Trauring
wrote:
> We have a pile of enthusiastic Google Summer of Code applicants, and not
> enough mentors at the moment. Anyone interested in mentoring a student
> or two over the summer? If so, email me ASAP.
I'm interested, but I'd like to know w
On 04/12/2012 09:57 AM, Jonathan Lange wrote:
I'm interested, but I'd like to know what's involved and over what
period of time before I sign up.
Helping students with design, planning and scoping, possibly doing code
reviews if no code reviews are forthcoming, and then doing a review at
the e
2012/4/12 Jonathan Lange
> On Thu, Apr 12, 2012 at 2:53 PM, Itamar Turner-Trauring
> wrote:
> > We have a pile of enthusiastic Google Summer of Code applicants, and not
> > enough mentors at the moment. Anyone interested in mentoring a student
> > or two over the summer? If so, email me ASAP.
>
The five hour estimate comes from the FAQ, and may be underestimate:
https://www.google-melange.com/gsoc/document/show/gsoc_program/google/gsoc2012/faqs#time_mentor
___
Twisted-Python mailing list
Twisted-Python@twistedmatrix.com
http://twistedmatrix.co
GSoC runs from May 21st - August 24th as a full-time internship. The GSoC
FAQ says to expect to spend 5 hours per week on GSoC per mentee:
https://www.google-melange.com/gsoc/document/show/gsoc_program/google/gsoc2012/faqs#time_mentor
Some resources:
- GSoC FAQ:
http://www.google-melange.com/docum
On Thu, Apr 12, 2012 at 3:08 PM, Jessica McKellar
wrote:
> GSoC runs from May 21st - August 24th as a full-time internship. The GSoC
> FAQ says to expect to spend 5 hours per week on GSoC per
> mentee: https://www.google-melange.com/gsoc/document/show/gsoc_program/google/gsoc2012/faqs#time_mentor
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 w
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:mostawesom