[issue17740] :func:`socket` in socket.rst links to socket module, not socket.socket

2013-04-16 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed, thanks for the report and the patches! -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___

[issue17740] :func:`socket` in socket.rst links to socket module, not socket.socket

2013-04-16 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7041401699e9 by Ezio Melotti in branch '3.3': #17740: fix links to the socket function. Initial patch by Zachary Ware. http://hg.python.org/cpython/rev/7041401699e9 New changeset b6802d2a6c4e by Ezio Melotti in branch 'default': #17740: merge with

[issue17740] :func:`socket` in socket.rst links to socket module, not socket.socket

2013-04-15 Thread Zachary Ware
Zachary Ware added the comment: So it does. Would you like a new pair of patches? It is just a search-and-replace from ":func:`socket`" to ":func:`.socket`". -- ___ Python tracker ___

[issue17740] :func:`socket` in socket.rst links to socket module, not socket.socket

2013-04-15 Thread Ezio Melotti
Ezio Melotti added the comment: I think :func:`.socket` should work too. -- assignee: docs@python -> ezio.melotti nosy: +ezio.melotti stage: -> patch review ___ Python tracker _

[issue17740] :func:`socket` in socket.rst links to socket module, not socket.socket

2013-04-15 Thread Zachary Ware
Changes by Zachary Ware : Added file: http://bugs.python.org/file29872/socket_func_link_2.7.diff ___ Python tracker ___ ___ Python-bugs-list m

[issue17740] :func:`socket` in socket.rst links to socket module, not socket.socket

2013-04-15 Thread Zachary Ware
New submission from Zachary Ware: In Doc/library/socket.rst, :func:`socket` links to #module-socket, not #socket.socket. The attached patch changes all occurances of :func:`socket` to :func:`~socket.socket`, except the first one which keeps the explicit module name (no ~). -- assigne