diff options
| author | Giampaolo Rodola' <g.rodola@gmail.com> | 2011-09-22 17:27:00 +0000 |
|---|---|---|
| committer | Giampaolo Rodola' <g.rodola@gmail.com> | 2011-09-22 17:27:00 +0000 |
| commit | 9b06c9bd1e62e3578436fe36b575d58ee4c3b7e4 (patch) | |
| tree | 55a93c6d7b350699763085d1748454ed54ecbfce /psutil/_common.py | |
| parent | a513c74f8ade2358ddbd562d4709f825e1bdab48 (diff) | |
| download | psutil-9b06c9bd1e62e3578436fe36b575d58ee4c3b7e4.tar.gz | |
net io refactoring plus some tests
Diffstat (limited to 'psutil/_common.py')
| -rw-r--r-- | psutil/_common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/psutil/_common.py b/psutil/_common.py index 2057b3df..bc1efe6b 100644 --- a/psutil/_common.py +++ b/psutil/_common.py @@ -62,5 +62,5 @@ ntuple_uids = namedtuple('user', 'real effective saved') ntuple_gids = namedtuple('group', 'real effective saved') ntuple_io = namedtuple('io', 'read_count write_count read_bytes write_bytes') ntuple_ionice = namedtuple('ionice', 'ioclass value') -ntuple_net_iostat = namedtuple('iostat', 'bytes_sent bytes_rcvd packets_sent packets_rcvd') +ntuple_net_iostat = namedtuple('iostat', 'bytes_sent bytes_recv packets_sent packets_recv') ntuple_disk_iostat = namedtuple('iostat', 'read_count write_count read_bytes write_bytes read_time write_time') |
