From: Fred Drake Date: Tue, 7 Mar 2000 14:05:16 +0000 (+0000) Subject: Fixed inet_ntoa() docstring. X-Git-Tag: v1.6a1~269 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e066134f482f8e3fa427a9f84892b39faff72627;p=thirdparty%2FPython%2Fcpython.git Fixed inet_ntoa() docstring. --- diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index 3f8aa19de8e6..659d813482a0 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";