From c9aa439bbb953a59aa3387314e008f4f755ae61b Mon Sep 17 00:00:00 2001 From: mathieui Date: Mon, 22 Jun 2015 00:59:06 +0200 Subject: Add slots to the User object (we can have thousands of these) --- src/user.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/user.py b/src/user.py index b1796bc3..4142869b 100644 --- a/src/user.py +++ b/src/user.py @@ -32,6 +32,8 @@ class User(object): """ keep trace of an user in a Room """ + __slots__ = ('last_talked', 'jid', 'chatstate', 'affiliation', 'show', 'status', 'role', 'nick', 'color') + def __init__(self, nick, affiliation, show, status, role, jid, deterministic=True, color=''): self.last_talked = datetime(1, 1, 1) # The oldest possible time self.update(affiliation, show, status, role) -- cgit v1.2.3