25 Jan
2000
25 Jan
'00
11:26 a.m.
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