ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/pystatgrab/_statgrab.pyx
(Generate patch)

Comparing projects/pystatgrab/_statgrab.pyx (file contents):
Revision 1.5 by tdb, Fri Feb 13 00:16:20 2004 UTC vs.
Revision 1.6 by tdb, Fri Feb 13 12:03:29 2004 UTC

# Line 272 | Line 272 | def py_get_disk_stats():
272      s = get_disk_stats(&entries)
273      if s == NULL:
274          raise StatgrabException, 'get_disk_stats() returned NULL'
275 <    list = [entries]
275 >    list = []
276      for i from 0 <= i < entries:
277          list.append(Result(
278              {'device_name': s.device_name,
# Line 295 | Line 295 | def py_get_diskio_stats():
295      s = get_diskio_stats(&entries)
296      if s == NULL:
297          raise StatgrabException, 'get_diskio_stats() returned NULL'
298 <    list = [entries]
298 >    list = []
299      for i from 0 <= i < entries:
300          list.append(Result(
301              {'disk_name': s.disk_name,
# Line 313 | Line 313 | def py_get_diskio_stats_diff():
313      s = get_diskio_stats_diff(&entries)
314      if s == NULL:
315          raise StatgrabException, 'get_diskio_stats_diff() returned NULL'
316 <    list = [entries]
316 >    list = []
317      for i from 0 <= i < entries:
318          list.append(Result(
319              {'disk_name': s.disk_name,
# Line 345 | Line 345 | def py_get_network_stats():
345      s = get_network_stats(&entries)
346      if s == NULL:
347          raise StatgrabException, 'get_network_stats() returned NULL'
348 <    list = [entries]
348 >    list = []
349      for i from 0 <= i < entries:
350          list.append(Result(
351              {'interface_name': s.interface_name,
# Line 363 | Line 363 | def py_get_network_stats_diff():
363      s = get_network_stats_diff(&entries)
364      if s == NULL:
365          raise StatgrabException, 'get_network_stats_diff() returned NULL'
366 <    list = [entries]
366 >    list = []
367      for i from 0 <= i < entries:
368          list.append(Result(
369              {'interface_name': s.interface_name,
# Line 381 | Line 381 | def py_get_network_iface_stats():
381      s = get_network_iface_stats(&entries)
382      if s == NULL:
383          raise StatgrabException, 'get_network_iface_stats() returned NULL'
384 <    list = [entries]
384 >    list = []
385      for i from 0 <= i < entries:
386          list.append(Result(
387              {'interface_name': s.interface_name,

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines