/usr/lib/python3/dist-packages/twisted/words/im
NameSizeModeActions
__pycache__/-0755rm
baseaccount.py18080644editdlrm
basechat.py164540644editdlrm
basesupport.py78420644editdlrm
instancemessenger.glade771260644editdlrm
interfaces.py86750644editdlrm
ircsupport.py91500644editdlrm
locals.py4990644editdlrm
pbsupport.py96760644editdlrm
__init__.py1290644editdlrm
Edit: /usr/lib/python3/dist-packages/twisted/words/im/locals.py (499B)
# Copyright (c) Twisted Matrix Laboratories. # See LICENSE for details. class Enum: group = None def __init__(self, label): self.label = label def __repr__(self): return '<%s: %s>' % (self.group, self.label) def __str__(self): return self.label class StatusEnum(Enum): group = 'Status' OFFLINE = Enum('Offline') ONLINE = Enum('Online') AWAY = Enum('Away') class OfflineError(Exception): """The requested action can't happen while offline."""