samuel / python-ping

Pure Python version of ICMP ping
229 stars 309 forks source link

updated ping.py as ping3.py for python3. fixed multithreading bug #5

Open kyan001 opened 8 years ago

kyan001 commented 8 years ago

removed ord() and *2/2 in checksum(), since python3 no need these and give the same result as python2

print x -> print(x) replacing % x by {}.format()

small modifies on verbose_ping prints

kyan001 commented 8 years ago

fixed multithreading problem in ping3.py