1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-07-09 01:05:53 +02:00

doc update

This commit is contained in:
Kelly Brazil
2020-07-27 11:04:27 -07:00
parent 842ea3a94b
commit 12912521ec
2 changed files with 0 additions and 11 deletions

View File

@ -89,13 +89,6 @@ Examples:
info(self, /, *args, **kwargs)
```
## Traceroute
```python
Traceroute(self, dest_name, dest_ip)
```
Abstraction of a traceroute result.
## Hop
```python
Hop(self, idx)

View File

@ -140,10 +140,6 @@ RE_PROBE_RTT_ANNOTATION = re.compile(r'(\d+\.?\d+)?\s+ms|(\s+\*\s+)\s*(!\S*)?')
class Traceroute(object):
"""
Abstraction of a traceroute result.
"""
def __init__(self, dest_name, dest_ip):
self.dest_name = dest_name
self.dest_ip = dest_ip