This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: pyping 0.0.5 package crashed on ZeroDivisionError: float division by zero
Type: behavior Stage: resolved
Components: Extension Modules Versions: Python 2.7
process
Status: closed Resolution: third party
Dependencies: Superseder:
Assigned To: Nosy List: r.david.murray, saravanan1987
Priority: normal Keywords:

Created on 2017-09-26 19:27 by saravanan1987, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (2)
msg303066 - (view) Author: Saravanan Nagarajan (saravanan1987) Date: 2017-09-26 19:27
r = pyping.ping(hostip)
  File "build/bdist.linux-x86_64/egg/pyping/core.py", line 426, in ping
    return p.run(count)
  File "build/bdist.linux-x86_64/egg/pyping/core.py", line 288, in run
    self.print_exit()
  File "build/bdist.linux-x86_64/egg/pyping/core.py", line 208, in print_exit
    lost_rate = float(lost_count) / self.send_count * 100.0
ZeroDivisionError: float division by zero
msg303067 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2017-09-26 19:32
pyping is not part of the standard library, you'll need to find their bug tracker and report the problem to them.
History
Date User Action Args
2022-04-11 14:58:52adminsetgithub: 75779
2017-09-26 19:32:23r.david.murraysetstatus: open -> closed

type: crash -> behavior

nosy: + r.david.murray
messages: + msg303067
resolution: third party
stage: resolved
2017-09-26 19:27:33saravanan1987create