summaryrefslogtreecommitdiffstatshomepage
path: root/py/objobject.c
Commit message (Collapse)AuthorAge
* py: Make all objects and instances derive from object.Damien George2014-04-05
| | | | | This makes isinstance(X, object) and issubclass(X, object) true for all X.
* py: Change nlr_jump to nlr_raise, to aid in debugging.Damien George2014-04-05
| | | | | | This does not affect code size or performance when debugging turned off. To address issue #420.
* py: Add 'object' object.Damien George2014-03-22