From dd44e7a4b6a175a6d88d16ccb2bd6ca05f6d9dc5 Mon Sep 17 00:00:00 2001 From: Tomas Babej Date: Sat, 15 Aug 2015 14:55:04 +0200 Subject: [PATCH] ReadOnlyDictView: Add methods for better representation of the ReadOnlyDictView --- tasklib/task.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tasklib/task.py b/tasklib/task.py index f30cc61..f0bb3a8 100644 --- a/tasklib/task.py +++ b/tasklib/task.py @@ -38,6 +38,11 @@ class ReadOnlyDictView(object): def __len__(self): return len(self.viewed_dict) + def __unicode__(self): + return u'ReadOnlyDictView: {0}'.format(repr(self.viewed_dict)) + + __repr__ = __unicode__ + def get(self, key, default=None): return copy.deepcopy(self.viewed_dict.get(key, default)) -- 2.39.5