[Neo-report] r1807 gregory - /trunk/neo/event.py

nobody at svn.erp5.org nobody at svn.erp5.org
Fri Feb 19 17:23:00 CET 2010


Author: gregory
Date: Fri Feb 19 17:22:59 2010
New Revision: 1807

Log:
Add some XXX.

Modified:
    trunk/neo/event.py

Modified: trunk/neo/event.py
==============================================================================
--- trunk/neo/event.py [iso-8859-1] (original)
+++ trunk/neo/event.py [iso-8859-1] Fri Feb 19 17:22:59 2010
@@ -97,17 +97,22 @@
         self._pending_processing = []
 
     def getConnectionList(self):
+        # XXX: use index
         return [x for x in self.connection_dict.values() if not x.isAborted()]
 
     def getClientList(self):
+        # XXX: use index
         return [c for c in self.getConnectionList() if c.isClient()]
 
     def getServerList(self):
+        # XXX: use index
         return [c for c in self.getConnectionList() if c.isServer()]
 
     def getConnectionListByUUID(self, uuid):
         """ Return the connection associated to the UUID, None if the UUID is
         None, invalid or not found"""
+        # XXX: use index
+        # XXX: consider remove UUID from connection and thus this method
         if uuid is None:
             return None
         result = []





More information about the Neo-report mailing list