diff options
author | Fred Drake <fdrake@acm.org> | 2000-03-07 14:05:16 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-03-07 14:05:16 (GMT) |
commit | e066134f482f8e3fa427a9f84892b39faff72627 (patch) | |
tree | 61b174609392f7ae34a3898cd6c464f6306804db /Modules/socketmodule.c | |
parent | 911d86693b8224c6bd2de2f3de83d9c521574a1b (diff) | |
download | cpython-e066134f482f8e3fa427a9f84892b39faff72627.zip cpython-e066134f482f8e3fa427a9f84892b39faff72627.tar.gz cpython-e066134f482f8e3fa427a9f84892b39faff72627.tar.bz2 |
Fixed inet_ntoa() docstring.
Diffstat (limited to 'Modules/socketmodule.c')
-rw-r--r-- | Modules/socketmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index 3f8aa19..659d813 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"; |