docs: fix Select() example for new style API.
This commit is contained in:
parent
e59cc89059
commit
ac4a42a43e
|
@ -289,9 +289,10 @@ available.
|
||||||
for name in dirnames + filenames), 0)
|
for name in dirnames + filenames), 0)
|
||||||
|
|
||||||
total = 0
|
total = 0
|
||||||
for recv, (msg, value) in Select(c.call_async(usage, '/tmp') for c in contexts):
|
for msg in Select(c.call_async(usage, '/tmp') for c in contexts):
|
||||||
print 'Context %s /tmp usage: %d' % (recv.context, value)
|
usage = msg.unpickle()
|
||||||
total += value
|
print 'Context %s /tmp usage: %d' % (recv.context, usage)
|
||||||
|
total += usage
|
||||||
|
|
||||||
print 'Total /tmp usage across all contexts: %d' % (total,)
|
print 'Total /tmp usage across all contexts: %d' % (total,)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue