| commit | 9f5eaf5db7f8a50d6f15acb4f3e474aad977f295 | [log] [tgz] |
|---|---|---|
| author | android-build-team Robot <[email protected]> | Tue Nov 05 12:38:14 2019 +0000 |
| committer | android-build-team Robot <[email protected]> | Tue Nov 05 12:38:14 2019 +0000 |
| tree | e9fb14bd73b8f85c9c77b77ad76e7870a356acf0 | |
| parent | de6dd07eb357f27dd91d19e388db2f0ecef4a5bf [diff] | |
| parent | ec5fa84d0c78d8038e26c77f334b9a4aecb35d9a [diff] |
Snap for 5988121 from ec5fa84d0c78d8038e26c77f334b9a4aecb35d9a to qt-aml-networking-release Change-Id: Ib904599d4599f920dd88ab08b57c04e4103f4b3d
Python 3.3+'s ipaddress for Python 2.6, 2.7, 3.2.
This repository tracks the latest version from cpython, e.g. ipaddress from cpython 3.8 as of writing.
Note that just like in Python 3.3+ you must use character strings and not byte strings for textual IP address representations:
>>> from __future__ import unicode_literals >>> ipaddress.ip_address('1.2.3.4') IPv4Address(u'1.2.3.4')
or
>>> ipaddress.ip_address(u'1.2.3.4') IPv4Address(u'1.2.3.4')
but not:
>>> ipaddress.ip_address(b'1.2.3.4') Traceback (most recent call last): File "<stdin>", line 1, in <module> File "ipaddress.py", line 163, in ip_address ' a unicode object?' % address) ipaddress.AddressValueError: '1.2.3.4' does not appear to be an IPv4 or IPv6 address. Did you pass in a bytes (str in Python 2) instead of a unicode object?