From e066134f482f8e3fa427a9f84892b39faff72627 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Tue, 7 Mar 2000 14:05:16 +0000 Subject: [PATCH] Fixed inet_ntoa() docstring. --- Modules/socketmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index 3f8aa19de8e..659d813482a 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -1886,7 +1886,7 @@ BUILD_FUNC_DEF_2(PySocket_inet_aton, PyObject *, self, PyObject *, args) } static char inet_ntoa_doc[] = -"inet_aton(packed_ip) -> ip_address_string\n\ +"inet_ntoa(packed_ip) -> ip_address_string\n\ \n\ Convert an IP address from 32-bit packed binary format to string format";