summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-08-04 14:21:46 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2016-08-04 14:21:46 (GMT)
commit6bbc83986d0fc689ccaceb6bba14f0589332e76e (patch)
treea81fff2f90dd09c8e852e11b07d21ff3c65c6fcf /Doc
parentc2fcbf4ed0df0a3682d8f156db9a76322476fa98 (diff)
downloadcpython-6bbc83986d0fc689ccaceb6bba14f0589332e76e.zip
cpython-6bbc83986d0fc689ccaceb6bba14f0589332e76e.tar.gz
cpython-6bbc83986d0fc689ccaceb6bba14f0589332e76e.tar.bz2
Indent ipaddress.ip_address() example correctly
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/ipaddress.rst11
1 files changed, 4 insertions, 7 deletions
diff --git a/Doc/library/ipaddress.rst b/Doc/library/ipaddress.rst
index 23526b6..2df2804 100644
--- a/Doc/library/ipaddress.rst
+++ b/Doc/library/ipaddress.rst
@@ -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::')