[issue20689] socket.AddressFamily is absent in pydoc output

2014-10-18 Thread Ethan Furman

Changes by Ethan Furman :


--
resolution:  -> fixed
stage: patch review -> resolved
status: open -> closed

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue20689] socket.AddressFamily is absent in pydoc output

2014-10-18 Thread Roundup Robot

Roundup Robot added the comment:

New changeset f8a8ddf0b070 by Ethan Furman in branch '3.4':
Issue20689: add missing API pieces to __all__
https://hg.python.org/cpython/rev/f8a8ddf0b070

New changeset 7266562c2bb3 by Ethan Furman in branch 'default':
Issue20689: add missing API pieces to __all__
https://hg.python.org/cpython/rev/7266562c2bb3

--
nosy: +python-dev

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue20689] socket.AddressFamily is absent in pydoc output

2014-10-17 Thread Ethan Furman

Ethan Furman added the comment:

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__.

--
nosy: +ethan.furman

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue20689] socket.AddressFamily is absent in pydoc output

2014-05-28 Thread Serhiy Storchaka

Serhiy Storchaka added the comment:

We should discuss this suggestion on Python-Dev. It affects the use of enums in 
other modules.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue20689] socket.AddressFamily is absent in pydoc output

2014-05-27 Thread STINNER Victor

STINNER Victor added the comment:

I suggested to not document new enums of the socket module (ex: AddressFamily, 
SocketType) when they were added. I don't think that they should be part of 
Python public API.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue20689] socket.AddressFamily is absent in pydoc output

2014-05-27 Thread Serhiy Storchaka

Changes by Serhiy Storchaka :


--
title: socket.AddressFamily is absent in html pydoc -> socket.AddressFamily is 
absent in pydoc output

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com