Closed ushell closed 7 years ago
in ipaddr.py file 1480 lines:
# Now, parse the hextets into a 128-bit integer. ip_int = 0L
the variable "ip_int=0L" is wrong when python setup.py build, the right variable is "ip_int = 0" ?
Looks like this module doesn't support Python 3. There's a few other ways it would break too. I'll send a patch.
Wait, ghost already sent https://github.com/google/ipaddr-py/pull/118. I'll ping the maintainers...
in ipaddr.py file 1480 lines:
the variable "ip_int=0L" is wrong when python setup.py build, the right variable is "ip_int = 0" ?