1cZ2DQRkfIu0CI44oI5i16 changeset

Changeset643264316633 (b)
ParentNone (a)
ab
0+# -*- coding: utf-8 -*-
0+
0+class Wrapper(object):
0+
0+    def __init__(self):
0+        self._object = {}
0+
0+    def update(self, **kw):
0+        self._object = kw
0+
0+    def __getattr__(self, attr):
0+        return self._object[attr]
0+
0+class Test(Wrapper):
0+
0+    def __init__(self):
0+        self._object = {'name': 'toto'}
0+
0+t = Test()
0+t.update(name='tata')
0+print t.name
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
--- Revision None
+++ Revision 643264316633
@@ -0,0 +1,21 @@
+# -*- coding: utf-8 -*-
+
+class Wrapper(object):
+
+ def __init__(self):
+ self._object = {}
+
+ def update(self, **kw):
+ self._object = kw
+
+ def __getattr__(self, attr):
+ return self._object[attr]
+
+class Test(Wrapper):
+
+ def __init__(self):
+ self._object = {'name': 'toto'}
+
+t = Test()
+t.update(name='tata')
+print t.name