LEFT | RIGHT |
(Both sides are equal) |
1 :mod:`ipaddress` --- IPv4/IPv6 manipulation library | 1 :mod:`ipaddress` --- IPv4/IPv6 manipulation library |
2 =================================================== | 2 =================================================== |
3 | 3 |
4 .. module:: ipaddress | 4 .. module:: ipaddress |
5 :synopsis: IPv4/IPv6 manipulation library. | 5 :synopsis: IPv4/IPv6 manipulation library. |
6 .. moduleauthor:: Peter Moody | 6 .. moduleauthor:: Peter Moody |
7 | 7 |
8 **Source code:** :source:`Lib/ipaddress.py` | 8 **Source code:** :source:`Lib/ipaddress.py` |
9 | 9 |
10 -------------- | 10 -------------- |
(...skipping 808 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
819 module defines the following exceptions: | 819 module defines the following exceptions: |
820 | 820 |
821 .. exception:: AddressValueError(ValueError) | 821 .. exception:: AddressValueError(ValueError) |
822 | 822 |
823 Any value error related to the address. | 823 Any value error related to the address. |
824 | 824 |
825 | 825 |
826 .. exception:: NetmaskValueError(ValueError) | 826 .. exception:: NetmaskValueError(ValueError) |
827 | 827 |
828 Any value error related to the netmask. | 828 Any value error related to the netmask. |
LEFT | RIGHT |