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.

Author Ron Frederick
Recipients Ron Frederick, gvanrossum, vstinner, yselivanov
Date 2015-11-27.19:28:36
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1448652516.67.0.0555030356133.issue25749@psf.upfronthosting.co.za>
In-reply-to
Content
The asyncio documentation defines the class 'asyncio.Server' in section 18.5.1.15. However, this class is not exported by asyncio. It is defined in base_events.py but not in the __all__ list. The only class exported at the asyncio top level is asyncio.AbstractServer, defined in events.py.

I think the documentation should match the exports. Either Server should be exported out of base_events.py, or the documentation should only refer to asyncio.AbstractServer.
History
Date User Action Args
2015-11-27 19:28:36Ron Fredericksetrecipients: + Ron Frederick, gvanrossum, vstinner, yselivanov
2015-11-27 19:28:36Ron Fredericksetmessageid: <1448652516.67.0.0555030356133.issue25749@psf.upfronthosting.co.za>
2015-11-27 19:28:36Ron Fredericklinkissue25749 messages
2015-11-27 19:28:36Ron Frederickcreate