]> granicus.if.org Git - python/commitdiff
Indent ipaddress.ip_address() example correctly
authorBerker Peksag <berker.peksag@gmail.com>
Thu, 4 Aug 2016 14:21:46 +0000 (17:21 +0300)
committerBerker Peksag <berker.peksag@gmail.com>
Thu, 4 Aug 2016 14:21:46 +0000 (17:21 +0300)
Doc/library/ipaddress.rst

index 23526b6c4227f61811463fa467ccfed1b3bad150..2df28048267711f3245f20fd92e9fc4880dc047e 100644 (file)
@@ -24,6 +24,10 @@ This is the full module API reference—for an overview and introduction, see
 
 .. versionadded:: 3.3
 
+.. testsetup::
+   >>> import ipaddress
+   >>> from ipaddress import (ip_network, IPv4Address, IPv4Interface,
+   ...                        IPv4Network)
 
 Convenience factory functions
 -----------------------------
@@ -39,13 +43,6 @@ IP addresses, networks and interfaces:
    A :exc:`ValueError` is raised if *address* does not represent a valid IPv4
    or IPv6 address.
 
-.. testsetup::
-   >>> import ipaddress
-   >>> from ipaddress import (ip_network, IPv4Address, IPv4Interface,
-   ...                        IPv4Network)
-
-::
-
    >>> ipaddress.ip_address('192.168.0.1')
    IPv4Address('192.168.0.1')
    >>> ipaddress.ip_address('2001:db8::')