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-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
2014-01-09
py: Implement base class lookup, issubclass, isinstance.
Damien George
2014-01-09
Improved type/class/instance code; mp_obj_type_t now has load_attr, store_attr.
Damien George
2014-01-08
py: Proper framework for built-in 'type'.
Damien George
2014-01-07
Merge branch 'cplusplus' of https://github.com/ian-v/micropython into ian-v-c...
Damien George
2014-01-06
Co-exist with C++ (issue #85)
ian-v
2014-01-05
Convert many object types structs to use C99 tagged initializer syntax.
Paul Sokolovsky
2014-01-04
Convert Python types to proper Python type hierarchy.
Damien George
2014-01-02
py: Add framework for built-in "type()" function.
Damien George
2013-12-21
Change object representation from 1 big union to individual structs.
Damien