[medusa] status.py out of sync?

Robin Becker robin@j...
Tue, 25 Jan 2000 11:26:28 +0000


The Zope version at least of status.py seems to be out of sync with the recent changes to
asyncore.py

eg

I think that channel_list_producer should contain something like

channel_reprs = map (
lambda x: '<' + repr(x[0]) + ',' + repr(x[1])[1:-1] + '>',
asyncore.socket_map.items()
)


rather than
channel_reprs = map (
lambda x: '<' + repr(x[1])[1:-1] + '>',
asyncore.socket_map.keys()
)

the same is true wherever we refer to the keys() as these seem to be just integers now rather
than objects.
-- 
Robin Becker