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 ethan.furman
Recipients ethan.furman, serhiy.storchaka, vajrasky, vstinner
Date 2014-10-18.05:54:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1413611686.39.0.408701071781.issue20689@psf.upfronthosting.co.za>
In-reply-to
Content
As I said in msg209237:
------------------------------------------------------------------------------------
> The containers are there to help with discoverability.  If you want to know what
> all the (common) AF values are you can either do
> 
>     [name for name in dir(socket) if name.isupper() and name.startswith('AF_')]
> 
> or
> 
>     list(socket.AddressFamily)
------------------------------------------------------------------------------------

The Enum classes have been documented, so they should be in __all__.
History
Date User Action Args
2014-10-18 05:54:46ethan.furmansetrecipients: + ethan.furman, vstinner, serhiy.storchaka, vajrasky
2014-10-18 05:54:46ethan.furmansetmessageid: <1413611686.39.0.408701071781.issue20689@psf.upfronthosting.co.za>
2014-10-18 05:54:46ethan.furmanlinkissue20689 messages
2014-10-18 05:54:46ethan.furmancreate