[issue12781] Mention SO_REUSEADDR near socket doc examples

2011-09-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset 126069a5ecf6 by Sandro Tosi in branch '3.2': #12781: Mention SO_REUSEADDR flag near socket examples http://hg.python.org/cpython/rev/126069a5ecf6 -- ___ Python tracker

[issue12781] Mention SO_REUSEADDR near socket doc examples

2011-09-02 Thread Sandro Tosi
Changes by Sandro Tosi : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___

[issue12781] Mention SO_REUSEADDR near socket doc examples

2011-09-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset fe60689d6a2e by Sandro Tosi in branch '2.7': #12781: Mention SO_REUSEADDR flag near socket examples http://hg.python.org/cpython/rev/fe60689d6a2e New changeset c4588cd2d59a by Sandro Tosi in branch '3.2': #12781: Mention SO_REUSEADDR flag near sock

[issue12781] Mention SO_REUSEADDR near socket doc examples

2011-08-21 Thread Éric Araujo
Éric Araujo added the comment: +1 to Sandro’s patch. Documenting all SO_* constants should be another bug; right now, there is only an index entry for “SO_*”, I suppose for the benefit of C programmers wanting to know where the constants are defined. I think the reason for not documenting a

[issue12781] Mention SO_REUSEADDR near socket doc examples

2011-08-19 Thread Sandro Tosi
Sandro Tosi added the comment: Sure it could be a solution, but I didn't go that way since it *may* complicate the example (which I see a something to get quick ready to test some code, there's always time for improvements later). I'm fine either way. -- _

[issue12781] Mention SO_REUSEADDR near socket doc examples

2011-08-18 Thread Eli Bendersky
Eli Bendersky added the comment: Wouldn't it be better to just add the flag to the example and then explain it in a few sentences? -- nosy: +eli.bendersky ___ Python tracker __

[issue12781] Mention SO_REUSEADDR near socket doc examples

2011-08-18 Thread Sandro Tosi
New submission from Sandro Tosi : Following up http://mail.python.org/pipermail/docs/2011-April/004025.html here's a patch to add a notice about SO_REUSEADDR after the examples, so even re-running several times and getting that error, wont scare anyone. -- assignee: docs@python compone