index
:
openmano-mpy
master
MicroPython source and hardware configuration for OpenMano
Damien George
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
py
/
objtype.c
Age
Commit message (
Expand
)
Author
2014-04-29
objtype: Implement basic framework for subclassing native types.
Paul Sokolovsky
2014-04-25
py: Support instance __call__ method.
Paul Sokolovsky
2014-04-21
py: Fix super() bug, where it didn't allow instance access.
Damien George
2014-04-17
py: Add MP_OBJ_STOP_ITERATION and make good use of it.
Damien George
2014-04-17
py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr.
Damien George
2014-04-15
py: Implement __delitem__ method for classes.
Paul Sokolovsky
2014-04-13
py: Add property object, with basic functionality.
Damien George
2014-04-08
py: Remove DELETE_SUBSCR opcode, combine with STORE_SUBSCR.
Damien George
2014-04-08
py: Finish implementation of all del opcodes.
Damien George
2014-04-05
py: Make all objects and instances derive from object.
Damien George
2014-04-05
py: Change nlr_jump to nlr_raise, to aid in debugging.
Damien George
2014-04-05
objtype: Add equality test for type types.
Paul Sokolovsky
2014-04-02
py: Factor out static/class method unwrapping code; add tests.
Damien George
2014-03-31
py: Implement __getattr__.
Damien George
2014-03-31
objtype: Wrap .__name__ handling in MICROPY_CPYTHON_COMPAT.
Paul Sokolovsky
2014-03-31
objtype: Add virtual __name__ attribute.
Paul Sokolovsky
2014-03-30
Merge map.h into obj.h.
Damien George
2014-03-30
Rename rt_* to mp_*.
Damien George
2014-03-29
py: Rename old const type objects to mp_type_* for consistency.
Damien George
2014-03-29
py: Change mp_const_* objects to macros.
Damien George
2014-03-27
py: Fix bug in type_store_attr, trying to store to ROM.
Damien George
2014-03-26
py: Fix logic bugs in object attribute/method extraction.
Damien George
2014-03-26
Remove mp_obj_type_t.methods entry and use .locals_dict instead.
Damien George
2014-03-26
Change mp_method_t.name from const char * to qstr.
Damien George
2014-03-26
py: Add support for user-defined iterators via __iter__, __next__.
Damien George
2014-03-17
py: Clean up includes.
xbe
2014-03-16
Implement support for __str__ and __repr__ special methods in classes.
Paul Sokolovsky
2014-03-03
py: Factor and improve issubclass.
Damien George
2014-03-03
Add mp_obj_is_subclass_fast() - intended for fast argument checking.
Paul Sokolovsky
2014-02-15
Implement proper exception type hierarchy.
Damien George
2014-02-15
Change mp_obj_type_t.name from const char * to qstr.
Damien George
2014-02-12
Remove mp_obj_new_exception_msg_1_arg and _2_arg.
Damien George
2014-02-12
Replace global "static" -> "STATIC", to allow "analysis builds". Part 1.
Paul Sokolovsky
2014-02-08
py: Add some qstrs to the global table.
Damien George
2014-02-06
Add staticmethod and classmethod to builtin namespace.
Damien George
2014-02-05
py: Fix bug with dual initialisation of RT_UNARY_OP_NOT.
Damien George
2014-02-05
py: Add built-in super.
Damien George
2014-02-02
py: Add very basic implementation of dir() builtin.
Damien George
2014-02-02
py: Partially fix native emitter to work with latest runtime.
Damien George
2014-02-01
py: Tidy up BINARY_OPs; negation done by special NOT bytecode.
Damien George
2014-01-30
py: Improve __bool__ and __len__ dispatch; add slots for them.
Damien George
2014-01-25
Remove obsoleted comment.
Damien George
2014-01-25
py: Implement iterator support for object that has __getitem__.
Damien George
2014-01-22
Second stage of qstr revamp: uPy str object can be qstr or not.
Damien George
2014-01-21
Revamp qstrs: they now include length and hash.
Damien George
2014-01-18
Improve method lookup in mp_obj_class_lookup.
Damien George
2014-01-18
Implement framework for class-defined built-in operators.
Damien George
2014-01-18
Make VM stack grow upwards, and so no reversed args arrays.
Damien George
2014-01-15
type->print(): Distinguish str() and repr() variety by passing extra param.
Paul Sokolovsky
2014-01-11
py: Implement staticmethod and classmethod (internally).
Damien George
[prev]
[next]