Re: [docs] Small typo error in the ip_address module introduction
Date: Sat, 29 Sep 2012 18:11:25 -0400 From: Pierre Rouleau <prouleau.pers@gmail.com> To: "docs@python.org" <docs@python.org> Subject: [docs] Small typo error in the ip_address module introduction
I found the following typo error inside the ip_address module introduction (http://docs.python.org/dev/howto/ipaddress.html).
Inside the Host Interfaces section there is the following example:
ipaddress.ip_interface('192.0.2.1/24') IPv4Interface('192.0.2.1/24') >>> ipaddress.ip_network('2001:db8::1/96') IPv6Interface('2001:db8::1/96') the second statement should call the ip_interface method instead of the ip_network one.
Hi Pierre, thanks for the report. There is currently an issue for this (and similar errors) here: http://bugs.python.org/issue15888 I expect that a fix will be committed shortly. Thanks, --Chris
participants (1)
-
Chris Jerdonek