summaryrefslogtreecommitdiff
path: root/tests/interp/python-self/README
blob: c8d6533c41586f18ec8d1c66a22ee9b11f2f45fc (plain)
1
2
3
4
5
6
7
8
Exercise the behaviour of 'self' in Interpreter Embedded Python.

So far it wasnt possible to tack an attribute to self, and have it
retained across several calls (basically using self.attr as extension
of _setup on the Python side).

This test shows that attributes on 'self' were not retained across calls.
A following patch will fix this.