[Python-checkins] bpo-42620: Improve socket.getsockname doc string (GH-23742)

miss-islington webhook-mailer at python.org
Wed Dec 23 02:44:26 EST 2020


https://github.com/python/cpython/commit/b20494618c6ac6ebcd354e0b16a6645fe47acbee
commit: b20494618c6ac6ebcd354e0b16a6645fe47acbee
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2020-12-22T23:44:00-08:00
summary:

bpo-42620: Improve socket.getsockname doc string (GH-23742)


Signed-off-by: Christian Heimes <christian at python.org>
(cherry picked from commit cf3565ca9a7ed0f7decd000e41fa3de400986e4d)

Co-authored-by: Christian Heimes <christian at python.org>

files:
M Modules/socketmodule.c

diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c
index 5dc5f4e0d397b..3e65dc027a38c 100644
--- a/Modules/socketmodule.c
+++ b/Modules/socketmodule.c
@@ -3324,8 +3324,9 @@ sock_getsockname(PySocketSockObject *s, PyObject *Py_UNUSED(ignored))
 PyDoc_STRVAR(getsockname_doc,
 "getsockname() -> address info\n\
 \n\
-Return the address of the local endpoint.  For IP sockets, the address\n\
-info is a pair (hostaddr, port).");
+Return the address of the local endpoint. The format depends on the\n\
+address family. For IPv4 sockets, the address info is a pair\n\
+(hostaddr, port).");
 
 
 #ifdef HAVE_GETPEERNAME         /* Cray APP doesn't have this :-( */



More information about the Python-checkins mailing list