Commit e0e2ab23 authored by Gregory P. Smith's avatar Gregory P. Smith

documentation clarification. mention bytes.

parent e9156671
...@@ -21,9 +21,10 @@ both IPv4 and IPv6. ...@@ -21,9 +21,10 @@ both IPv4 and IPv6.
Take an IP string or int and return an object of the correct type. Returns Take an IP string or int and return an object of the correct type. Returns
an :class:`IPv4` or :class:`IPv6` object. an :class:`IPv4` or :class:`IPv6` object.
The *ipaddr* parameter must be a string or integer representing the IP The *ipaddr* parameter must be a string, bytes or integer representing the
address. Either IPv4 or IPv6 addresses may be supplied. Integers less than IP address in ascii, network byte order or as a number respectively. Either
2**32 will be considered to be IPv4. IPv4 or IPv6 addresses may be supplied. Integers less than 2**32 will be
considered to be IPv4.
Raises :exc:`ValueError` if the *ipaddr* passed is not either an IPv4 or an Raises :exc:`ValueError` if the *ipaddr* passed is not either an IPv4 or an
IPv6 address. IPv6 address.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment