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.loop() documentation
Type: Stage:
Components: Documentation Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: akuchling Nosy List: akuchling, gumleef
Priority: normal Keywords:

Created on 2005-04-13 02:12 by gumleef, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg25005 - (view) Author: Graham (gumleef) Date: 2005-04-13 02:12
Document at http://docs.python.org/lib/module-asyncore.html
says that the map dictionary is updated in the asyncore
class's __init__() method (and to make sure you extend
this if you wish to retain this behaviour).

This is not the case. The map dictionary is updated by
asyncore.create_socket(). asyncore does not need to be
extended to retain the mapping behaviour the
documentation refers to.
msg25006 - (view) Author: A.M. Kuchling (akuchling) * (Python committer) Date: 2005-06-01 15:40
Logged In: YES 
user_id=11375

I've removed the misleading text; thank you for pointing this out.
History
Date User Action Args
2022-04-11 14:56:10adminsetgithub: 41851
2005-04-13 02:12:44gumleefcreate