Re: [Twisted-Python] Twisted-Python Digest, Vol 93, Issue 12
Hi all, A little intro first, I'm a developer by day, sql/plsql/java/perl/c/c++/... I've been looking for an opensource project to get to know and contribute to and came across twisted a week or so ago. It looks pretty interesting, years ago I spent time writing networking/remote access code. Anyway, I want to help and am starting to look through the 'easy' bugs - Python is pretty new to me so I figure that's where I should be. I took a look at http://twistedmatrix.com/trac/ticket/4966, which might be out-of-date. I don't see __all__ in twisted.web.server.py. Am I missing something there? Also, does the email verification on the website work? I've tried it a few times and haven't received an email, also nothing in my spam/trash related to it - sorry if this shouldn't go to the list. Thanks, Scott Ferguson On Sat, Dec 10, 2011 at 12:00 PM, <twisted-python-request@twistedmatrix.com> wrote:
Send Twisted-Python mailing list submissions to twisted-python@twistedmatrix.com
To subscribe or unsubscribe via the World Wide Web, visit http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python or, via email, send a message with subject or body 'help' to twisted-python-request@twistedmatrix.com
You can reach the person managing the list at twisted-python-owner@twistedmatrix.com
When replying, please edit your Subject line so it is more specific than "Re: Contents of Twisted-Python digest..."
Today's Topics:
1. Re: Boston Twisted Sprint: Last-Minute December Edition (Tenth) 2. Re: Boston Twisted Sprint: Last-Minute December Edition (Kevin Horn) 3. MemoryError in twisted.internet.abstract.FileDescriptor (Augusto Mecking Caringi) 4. Re: MemoryError in twisted.internet.abstract.FileDescriptor (Itamar Turner-Trauring) 5. Re: Boston Twisted Sprint: Last-Minute December Edition (Glyph)
----------------------------------------------------------------------
Message: 1 Date: Fri, 9 Dec 2011 13:32:23 -0500 From: Tenth <tenth@twistedmatrix.com> Subject: Re: [Twisted-Python] Boston Twisted Sprint: Last-Minute December Edition To: Twisted general discussion <twisted-python@twistedmatrix.com> Message-ID: <CAKJpRM0NWgs47FvsodcPKEBpX_D8fbnSGXQ+OSQp1+WiXWPknQ@mail.gmail.com> Content-Type: text/plain; charset="iso-8859-1"
I should also mention that the Sprint will now officially be starting at Noon, if that makes it more convenient for anyone...
Thanks,
- Dave
Scratch that bit about verification emails not sending, turns out it works fine in firefox, not in chrome. Thanks, Scott On Sat, Dec 10, 2011 at 9:24 PM, Scott M Ferguson <smferguson@gmail.com> wrote:
Hi all,
A little intro first, I'm a developer by day, sql/plsql/java/perl/c/c++/... I've been looking for an opensource project to get to know and contribute to and came across twisted a week or so ago. It looks pretty interesting, years ago I spent time writing networking/remote access code.
Anyway, I want to help and am starting to look through the 'easy' bugs - Python is pretty new to me so I figure that's where I should be. I took a look at http://twistedmatrix.com/trac/ticket/4966, which might be out-of-date. I don't see __all__ in twisted.web.server.py. Am I missing something there?
Also, does the email verification on the website work? I've tried it a few times and haven't received an email, also nothing in my spam/trash related to it - sorry if this shouldn't go to the list.
Thanks, Scott Ferguson
On Sat, Dec 10, 2011 at 12:00 PM, <twisted-python-request@twistedmatrix.com> wrote:
Send Twisted-Python mailing list submissions to twisted-python@twistedmatrix.com
To subscribe or unsubscribe via the World Wide Web, visit http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python or, via email, send a message with subject or body 'help' to twisted-python-request@twistedmatrix.com
You can reach the person managing the list at twisted-python-owner@twistedmatrix.com
When replying, please edit your Subject line so it is more specific than "Re: Contents of Twisted-Python digest..."
Today's Topics:
1. Re: Boston Twisted Sprint: Last-Minute December Edition (Tenth) 2. Re: Boston Twisted Sprint: Last-Minute December Edition (Kevin Horn) 3. MemoryError in twisted.internet.abstract.FileDescriptor (Augusto Mecking Caringi) 4. Re: MemoryError in twisted.internet.abstract.FileDescriptor (Itamar Turner-Trauring) 5. Re: Boston Twisted Sprint: Last-Minute December Edition (Glyph)
----------------------------------------------------------------------
Message: 1 Date: Fri, 9 Dec 2011 13:32:23 -0500 From: Tenth <tenth@twistedmatrix.com> Subject: Re: [Twisted-Python] Boston Twisted Sprint: Last-Minute December Edition To: Twisted general discussion <twisted-python@twistedmatrix.com> Message-ID: <CAKJpRM0NWgs47FvsodcPKEBpX_D8fbnSGXQ+OSQp1+WiXWPknQ@mail.gmail.com> Content-Type: text/plain; charset="iso-8859-1"
I should also mention that the Sprint will now officially be starting at Noon, if that makes it more convenient for anyone...
Thanks,
- Dave
On Dec 10, 2011, at 9:24 PM, Scott M Ferguson wrote:
A little intro first, I'm a developer by day, sql/plsql/java/perl/c/c++/... I've been looking for an opensource project to get to know and contribute to and came across twisted a week or so ago. It looks pretty interesting, years ago I spent time writing networking/remote access code.
Glad to hear it, welcome :).
Anyway, I want to help and am starting to look through the 'easy' bugs - Python is pretty new to me so I figure that's where I should be. I took a look at http://twistedmatrix.com/trac/ticket/4966, which might be out-of-date. I don't see __all__ in twisted.web.server.py. Am I missing something there?
Nope. __all__ should typically be defined on public modules, just as a hint for documentation and tools, so that's why the ticket sort of refers to it as if it's there. But twisted/web/server.py is a super old module, one that predates most of the documentation Really the thing to do with that ticket is to put a @var declaration into the module docstring, though. That should be a pretty trivial patch, to help you get comfortable with the process and the tools :). Feel free to ask if you have any other questions about contributing, -glyph
On Dec 10, 2011, at 9:24 PM, Scott M Ferguson wrote:
Nope. __all__ should typically be defined on public modules, just as a hint for documentation and tools, so that's why the ticket sort of refers to it as if it's there. But twisted/web/server.py is a super old module, one that predates most of the documentation
Really the thing to do with that ticket is to put a @var declaration into the module docstring, though. That should be a pretty trivial patch, to help you get comfortable with the process and the tools :).
Feel free to ask if you have any other questions about contributing,
-glyph
_______________________________________________ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python
Thanks for the response, as you mentioned that sounds like a good place to get comfortable with the process - I'll start there and ping the list as questions come up. Thanks, Scott
participants (2)
-
Glyph
-
Scott M Ferguson