index
:
suspect-devices/circuitpython
1.x
2.x
3.x
4.0.x
4.1.x
4.x
5.0.x
5.1.x
5.3.x
6.0.x
6.1.x
6.2.x
audiocore-rawsample-sinewave
azure
azure-pipelines
cross
dm-mixer
dynamic-native-modules
encoding
esp-extra-scripts
fix_typo_spanish
iabdalkader-cc3k-update
jepler-try-ubuntu-20.04
main
master
parse-bytecode
reentrant-gc
stable
travis-clang
travis-esp8266
travis-stackless
travis-testing
type_hints
CircuitPython - a Python implementation for teaching coding with microcontrollers
feurig
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
py
/
objtype.c
Age
Commit message (
Expand
)
Author
2017-08-25
Initial merge of micropython v1.9.2 into circuitpython 2.0.0 (in development)...
Dan Halbert
2017-08-15
py: Add verbose debug compile-time flag MICROPY_DEBUG_VERBOSE.
Stefan Naumann
2017-08-11
py/modsys: Initial implementation of sys.getsizeof().
Paul Sokolovsky
2017-07-31
all: Use the name MicroPython consistently in comments
Alexander Steffen
2017-07-19
all: Remove trailing spaces, per coding conventions.
Damien George
2017-06-20
Merge tag 'v1.9.1'
2.0.0-alpha.0
Scott Shawcroft
2017-04-22
py: Add LOAD_SUPER_METHOD bytecode to allow heap-free super meth calls.
Damien George
2017-04-22
py/objtype: mp_obj_new_super doesn't need to be public, so inline it.
Damien George
2017-04-12
py: Optimise types for common case where type has a single parent type.
Damien George
2017-03-29
py: Convert mp_uint_t to size_t for tuple/list accessors.
Damien George
2017-03-28
py: Use mp_raise_TypeError/mp_raise_ValueError helpers where possible.
Damien George
2017-03-24
py/objtype: Use size_t where appropriate, instead of mp_uint_t or uint.
Damien George
2017-02-24
Switch exception throwing to mp_raise helpers. It saves a little code space e...
Scott Shawcroft
2017-02-16
py: Add iter_buf to getiter type method.
Damien George
2017-02-14
py/objtype: Replace non-ASCII single-quote char with ASCII version.
Damien George
2017-02-09
py/objtype: Implement __delattr__ and __setattr__.
dmazzella
2017-01-10
Merge tag 'v1.8.7'
Scott Shawcroft
2016-11-22
py/objtype: Implement __call__ handling for an instance w/o heap alloc.
Paul Sokolovsky
2016-11-21
This introduces an alternative hardware API called nativeio structured around...
Scott Shawcroft
2016-10-17
py: Use mp_raise_msg helper function where appropriate.
Damien George
2016-06-19
py/objtype: Inherit protocol vtable from base class only if it exists.
Paul Sokolovsky
2016-06-19
py/objtype: instance: Inherit protocol vtable from a base class.
Paul Sokolovsky
2016-03-14
py: When printf'ing an object as a pointer, pass the concrete pointer.
Damien George
2016-01-11
py: Change first arg of type.make_new from mp_obj_t to mp_obj_type_t*.
Damien George
2016-01-11
py: Change type of .make_new and .call args: mp_uint_t becomes size_t.
Damien George
2016-01-03
py: Implement __dict__ for instances.
stijn
2015-11-29
py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.
Damien George
2015-06-13
py: Add MP_BINARY_OP_DIVMOD to simplify and consolidate divmod builtin.
Damien George
2015-05-12
py: Add mp_obj_get_int_truncated and use it where appropriate.
Damien George
2015-05-12
py: Convert hash API to use MP_UNARY_OP_HASH instead of ad-hoc function.
Damien George
2015-05-04
py: Check that arg to object.__new__ is a user-defined type.
Damien George
2015-04-16
py: Add %q format support to mp_[v]printf, and use it.
Damien George
2015-04-16
py: Overhaul and simplify printf/pfenv mechanism.
Damien George
2015-04-11
py: Combine load_attr and store_attr type methods into one (attr).
Damien George
2015-04-04
py: Implement delete for property and descriptors.
Damien George
2015-04-04
py: Some trivial cosmetic changes, for code style consistency.
Damien George
2015-03-31
objtype: Add special unary methods __pos__, __neg__, __invert__.
Paul Sokolovsky
2015-03-26
py: Add optional support for descriptors' __get__ and __set__ methods.
stijn
2015-03-21
py: Combine duplicated code that converts members from a lookup.
Damien George
2015-03-20
objtype: More comment clarification for attribute lookup.
Paul Sokolovsky
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
[next]