This commit is contained in:
Maximilian Hils 2016-05-20 13:59:42 -07:00
parent b538138ead
commit eb914924ab
3 changed files with 10 additions and 1 deletions

View File

@ -186,7 +186,7 @@ class FlowView(tabs.Tabs):
viewmode,
message,
limit,
(bytes(message.headers), message.content) # Cache invalidation
message # Cache invalidation
)
def _get_content_view(self, viewmode, message, max_lines, _):

View File

@ -26,6 +26,9 @@ class MessageData(utils.Serializable):
def __ne__(self, other):
return not self.__eq__(other)
def __hash__(self):
return hash(frozenset(self.__dict__.items()))
def set_state(self, state):
for k, v in state.items():
if k == "headers":
@ -52,6 +55,9 @@ class Message(utils.Serializable):
def __ne__(self, other):
return not self.__eq__(other)
def __hash__(self):
return hash(self.data) ^ 1
def get_state(self):
return self.data.get_state()

View File

@ -87,6 +87,9 @@ class MultiDict(MutableMapping, Serializable):
def __ne__(self, other):
return not self.__eq__(other)
def __hash__(self):
return hash(self.fields)
def get_all(self, key):
"""
Return the list of all values for a given key.