This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: asyncore docs reference is unclear
Type: Stage:
Components: Documentation Versions: Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: djc, georg.brandl
Priority: normal Keywords:

Created on 2010-01-18 12:32 by djc, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (4)
msg98008 - (view) Author: Dirkjan Ochtman (djc) * (Python committer) Date: 2010-01-18 12:32
http://docs.python.org/library/asyncore.html has this bit (for bind()):

    (The format of address depends on the address family — see above.)

The only way this makes sense is if it points back to the "family" argument used in the create_socket() documentation, but even there the term "family" isn't actually used in the description, and it's unclear that the reference to the socket module documentation "for information on creating sockets" will have more information about the address constraints for bind(). It would probably be better if the bind() description referred to the socket documentation directly.
msg98574 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2010-01-30 18:25
Would you like to contribute a patch?
msg98612 - (view) Author: Dirkjan Ochtman (djc) * (Python committer) Date: 2010-01-31 12:43
Yeah, I'll get to it. :)
msg99999 - (view) Author: Dirkjan Ochtman (djc) * (Python committer) Date: 2010-02-24 04:02
Fixed in r78415.
History
Date User Action Args
2022-04-11 14:56:56adminsetgithub: 51982
2010-02-24 04:02:03djcsetstatus: open -> closed
resolution: fixed
messages: + msg99999
2010-01-31 12:43:21djcsetmessages: + msg98612
2010-01-30 18:25:08georg.brandlsetmessages: + msg98574
2010-01-18 12:32:34djccreate