| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
When publishing to PyPI, we'll have to set it at the time of tagging,
as before.
|
| |
|
| |
|
|
|
|
| |
alexf101-patch-1
|
| |
|
|
|
|
| |
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@237 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
| |
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@236 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
| |
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@235 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
| |
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@225 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
| |
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@224 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
| |
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@223 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
| |
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@218 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
| |
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@217 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
| |
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@208 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
| |
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@207 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
| |
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@206 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
|
|
| |
+ docstring fix to remove references to long-deceased IP() function
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@205 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
|
|
| |
+ 2.1.7 release.
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@203 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
| |
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@201 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
| |
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@200 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
|
|
|
| |
add support for pulling the teredo client and server addresses out
of an ipv6 address.
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@199 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
+ Make conversion from int to packed a public function.
this allows a user to easily construct network objects from
integers. Eg:
>>> addr # int(ipaddr.IPAddress('1.1.1.1'))
16843009
>>> ipaddr.IPNetwork('%s/24' % socket.inet_ntoa(
ipaddr.v4_int_to_packed(addr)))
IPv4Network('1.1.1.1/24')
Or
>>> addr # int(ipaddr.IPAddress('2001::1')
42540488161975842760550356425300246529L
>>> ipaddr.IPNetwork('%s/96' % socket.inet_ntop(
socket.AF_INET6, ipaddr.v6_int_to_packed(addr)))
IPv6Network('2001::1/96')
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@198 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
| |
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@196 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
| |
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@194 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
| |
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@192 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
| |
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@186 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
| |
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@181 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
| |
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@177 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
| |
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@176 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
|
|
|
| |
problem with like-ip'd network objects that had the same broadcast
address.
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@171 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
|
|
| |
to ipaddr-py-dev)
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@167 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
|
|
|
| |
the host bits of a network object. issue58.
Reported by Robert Thomson.
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@166 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
|
|
| |
issue60, reported by colmmac.
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@165 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
|
|
|
| |
(eg, IPNetwork('1.1.1.1/24') != IPAddress('1.1.1.1'))
+ whitespace cleanup.
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@164 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
|
|
| |
fail as expected.
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@163 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
|
|
| |
and address from itself.
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@162 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
|
|
|
| |
this isn't ever meant to support adding two address object together nor
addition to network objects.
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@158 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
|
|
| |
both in the code and the docstrings.
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@147 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
| |
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@146 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
|
|
|
| |
+ provide a key function suitable for passing to sorted
enabling the sorting.
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@140 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
|
|
| |
consistent with each other.
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@139 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
|
|
| |
objects.
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@138 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
|
|
| |
(thanks to rep.dot.net for the bug report and patch).
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@137 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
|
|
| |
(thanks to rlaager for reporting)
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@134 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
|
|
| |
(thanks rep.dot.not)
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@133 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
|
|
| |
(thanks Scott Kitterman).
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@132 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
|
|
| |
(thanks to Harry Bock)
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@131 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
|
|
| |
(from Steven D'Aprano)
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@129 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
|
|
| |
from mat smart.
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@128 09200d28-7f98-11dd-ad27-0f66e57d2035
|
|
|
|
|
|
|
|
| |
change the address exclusion error to RunTimeError
exception docstrings
typo in docstring.
git-svn-id: https://ipaddr-py.googlecode.com/svn/trunk@127 09200d28-7f98-11dd-ad27-0f66e57d2035
|