venue coding q
    Robert Olson 
    olson at mcs.anl.gov
       
    Thu Feb 20 11:05:08 CST 2003
    
    
  
is there a reason that this:
>         self.__dict__["users"] = dict()
>         self.__dict__["clients"] = dict()
>         self.__dict__["nodes"] = dict()
>         self.__dict__["dataStore"] = None
>         self.__dict__["multicastAddressAllocator"] = None
>         self.__dict__["cleanupTime"] = 30
>         self.__dict__["nextPrivateId"] = 1
>         self.__dict__["encryptionKey"] = AllocateEncryptionKey()
isn't just written
         self.users = {}
etc ?
--bob 
    
    
More information about the ag-dev
mailing list