[issue20582] socket.getnameinfo() does not document flags

2020-11-20 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue20582] socket.getnameinfo() does not document flags

2020-10-08 Thread Irit Katriel
Irit Katriel added the comment: This seems complete, can it be closed? -- nosy: +iritkatriel ___ Python tracker ___ ___

[issue20582] socket.getnameinfo() does not document flags

2019-04-11 Thread miss-islington
miss-islington added the comment: New changeset 3993ccb6820d4239ce3d9e1c5d31f13b86eb by Miss Islington (bot) (Emmanuel Arias) in branch 'master': bpo-20582: add link for manpage for flags on getnameinfo() (GH-11977)

[issue20582] socket.getnameinfo() does not document flags

2019-02-21 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: You can use the special role :manpage: for referring man pages. -- nosy: +serhiy.storchaka ___ Python tracker ___

[issue20582] socket.getnameinfo() does not document flags

2019-02-21 Thread Emmanuel Arias
Change by Emmanuel Arias : -- keywords: +patch pull_requests: +12001 stage: needs patch -> patch review ___ Python tracker ___ ___

[issue20582] socket.getnameinfo() does not document flags

2019-01-20 Thread Demian Brecht
Demian Brecht added the comment: What if the docs for socket functions that took system-level flag parameters had links to relevant online man pages? I don't think a single entry at the top of the page would be optimal. I know that I tend to skip the preamble and just go directly to the

[issue20582] socket.getnameinfo() does not document flags

2019-01-20 Thread Demian Brecht
Change by Demian Brecht : -- nosy: +demian.brecht ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue20582] socket.getnameinfo() does not document flags

2018-11-22 Thread Danish Prakash
Danish Prakash added the comment: I would like to work on this if nobody else has. -- nosy: +danishprakash ___ Python tracker ___

[issue20582] socket.getnameinfo() does not document flags

2018-10-17 Thread Cheryl Sabella
Change by Cheryl Sabella : -- keywords: +easy stage: -> needs patch type: -> enhancement versions: +Python 3.8 -Python 2.7, Python 3.3, Python 3.4 ___ Python tracker ___

[issue20582] socket.getnameinfo() does not document flags

2014-02-10 Thread Roy Smith
New submission from Roy Smith: http://docs.python.org/2/library/socket.html The description for getnameinfo() says, ... Depending on the settings of flags, the result can contain a fully-qualified domain name or numeric address representation in host., but does not say what to pass for flags

[issue20582] socket.getnameinfo() does not document flags

2014-02-10 Thread R. David Murray
R. David Murray added the comment: Like the other socket functions, you have to look it up in the man page. A number of the other functions that take a flag argument mention this in their description, so a similar mention should be added to the getnameinfo entry. -- nosy:

[issue20582] socket.getnameinfo() does not document flags

2014-02-10 Thread Roy Smith
Roy Smith added the comment: What might make sense is for all of those, document the function call as taking native_flags (or something like that), with a single note at the top of the page saying, native_flags means look up the specific values in the man page and link to that note each time

[issue20582] socket.getnameinfo() does not document flags

2014-02-10 Thread R. David Murray
R. David Murray added the comment: I thought about that, but different functions refer to different man pages, and it isn't always obvious from the function name which one. -- ___ Python tracker rep...@bugs.python.org