Exemplo n.º 1
0
def get_user(username):
    if username in SESSION_CACHE:
        return SESSION_CACHE[username]
    return ChatUser.get_user(username)
Exemplo n.º 2
0
def get_user(username):
    if username in SESSION_CACHE:
        return SESSION_CACHE[username]
    return ChatUser.get_user(username)
Exemplo n.º 3
0
 def get_user(self, username):
     if username in self:
         return self[username]
     return ChatUser.get_user(username)
Exemplo n.º 4
0
 def get_user(self,username):
     if username in self:
         return self[username]
     return ChatUser.get_user(username)