27 Feb
2001
27 Feb
'01
5:22 p.m.
Sorry, just thought of another coupla questions:
If x is an instance of my class, then: If I do x.a = 1, is _setOb called? If I do print x.a, is _getOb called?
No in either case. _setOb shouldn't be used directly in the current ObjectManger implementation. It doesn't populate the _objects list of the object manager on which it was called (your object won't show up). Instead, _setObject should be called.