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
2015-03-17
objtype: Clarify comment why we call mp_load_method_maybe() for native sub-obj.
Paul Sokolovsky
2015-03-16
objtype: Refactor dealing with native sub-objects for clarity.
Paul Sokolovsky
2015-03-16
objtype: mp_obj_class_lookup: Remove implausible condition.
Paul Sokolovsky
2015-03-16
objtype: Clarify comment for mp_obj_class_lookup().
Paul Sokolovsky
2015-03-16
objtype: Clarify code by consistently using common subexpression.
Paul Sokolovsky
2015-02-22
py: Add few more special methods.
Paul Sokolovsky
2015-02-15
py: Simplify and remove redundant code for __iter__ method lookup.
Damien George
2015-02-14
py: Cleanup duplication in instance_is_callable/instance_call.
stijn
2015-02-09
py: Don't unnecessarily create a bound method.
Damien George
2015-02-09
py: Allow subclass of native object to delegate to the native buffer_p.
Damien George
2015-02-08
py: Fix instance lookup, since object is not a real type.
Damien George
2015-01-31
py: Add MICROPY_PY_ALL_SPECIAL_METHODS and __iadd__ special method under it.
Paul Sokolovsky
2015-01-27
py: Specify unary/binary op name in TypeError error message.
Damien George
2015-01-20
py: Use mp_arg_check_num in some _make_new functions.
Damien George
2015-01-20
py, unix: Allow to compile with -Wunused-parameter.
Damien George
2015-01-11
py: Remove unnecessary BINARY_OP_EQUAL code that just checks pointers.
Damien George
2015-01-08
tests: Add test for when instance member overrides class member.
Damien George
2015-01-07
py: Add option to cache map lookup results in bytecode.
Damien George
2015-01-01
py: Move to guarded includes, everywhere in py/ core.
Damien George
2014-12-28
showbc: Print operation mnemonic in BINARY_OP.
Paul Sokolovsky
2014-11-06
py: Use shorter, static error msgs when ERROR_REPORTING_TERSE enabled.
Damien George
2014-11-05
py: Fix some macros defines; cleanup some includes.
Damien George
2014-11-03
py: Explicitly set uninitialised struct member to false.
Damien George
2014-11-03
py: Fix builtin callable so it checks user-defined instances correctly.
Damien George
2014-10-23
py: Use MP_OBJ_NULL instead of NULL in a few places.
Damien George
2014-08-30
py: Make tuple and list use mp_int_t/mp_uint_t.
Damien George
2014-08-30
Change some parts of the core API to use mp_uint_t instead of uint/int.
Damien George
2014-08-26
py: Add dispatch for user defined ==, >, <=, >=.
Damien George
2014-08-24
py: Fix bug where GC collected native/viper/asm function data.
Damien George
2014-07-05
py: Automatically ake __new__ a staticmethod.
Damien George
2014-07-03
Rename machine_(u)int_t to mp_(u)int_t.
Damien George
2014-06-10
py: Implement __contains__ special method.
Damien George
2014-06-08
objtype: Fix passing of class param to inherited classmethods.
Paul Sokolovsky
2014-06-08
objtype: Optimize stack usage mp_obj_class_lookup().
Paul Sokolovsky
2014-06-08
objtype: Enable __lt__ method support for instances.
Paul Sokolovsky
2014-06-06
Change comments (mainly URLs) to no longer specifically say Python 3.3
Chris Angelico
2014-06-03
py: Allow tail call optimisation in mp_call_function_n_kw.
Damien George
2014-06-01
Rename bultins config variables to MICROPY_PY_BUILTINS_*.
Damien George
2014-05-24
Rename configuration variables controling Python features.
Damien George
2014-05-22
py: Initial attempts to actually allow implementing __new__ in Python.
Paul Sokolovsky
2014-05-21
objtype: super: Fall back to "object" lookup as last resort.
Paul Sokolovsky
2014-05-21
objtype: super: Add stop condition for looking up in base types.
Paul Sokolovsky
2014-05-21
py: Rename MP_OBJ_NOT_SUPPORTED to MP_OBJ_NULL.
Damien George
2014-05-19
objtype: Separate __new__ and __init__ methods.
Paul Sokolovsky
2014-05-13
py, unix: Add copyright for modules I worked closely on.
Paul Sokolovsky
2014-05-11
py: Use mp_arg_check_num in more places.
Damien George
2014-05-11
objtuple: Go out of the way to support comparison of subclasses.
Paul Sokolovsky
2014-05-11
py: Don't try to "bind" types store as attributes of objects.
Paul Sokolovsky
2014-05-10
objtype: Comments for duplicating code in runtime.c.
Paul Sokolovsky
2014-05-10
objtype: Implement ->getiter() method for instances.
Paul Sokolovsky
[next]