index
:
user/sven/micropython.git
for-upstream
master
old
stmhal-flash
origin/HEAD
origin/docs/library/bluetooth
origin/master
origin/parse-bytecode
origin/v1.22-release
origin/v1.24-release
The MicroPython project
Sven Wegener
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
py
/
objtype.c
Age
Commit message (
Expand
)
Author
8 days
py/objtype: Add support for PEP487 __set_name__.
Anson Mansfield
12 days
py: Cast type names to qstr explicitly.
Jeff Epler
2024-10-16
py/objtype: Don't delegate lookup of descriptor methods to __getattr__.
Damien George
2024-10-07
py/objtype: Allow passing keyword arguments to native base __init__.
stijn
2024-07-25
py/objtype: Validate super() arguments.
stijn
2024-07-25
py/objtype: Avoid crash on calling members of uninitialized native type.
Laurens Valk
2024-03-26
py/makeqstrdata.py: Ensure that scope names get low qstr values.
Jim Mussared
2024-03-07
all: Remove the "STATIC" macro and just use "static" instead.
Angus Gratton
2024-02-19
py/obj: Change sizeof to offsetof in mp_obj_malloc_var macro.
Damien George
2023-11-03
py/misc: Change sizeof to offsetof for variable-length alloc.
Jim Mussared
2023-06-01
py: Change MP_UNARY_OP_INT to MP_UNARY_OP_INT_MAYBE.
Damien George
2023-05-19
py/runtime: If inplace binop fails then try corresponding normal binop.
Damien George
2023-05-19
py/obj: Remove mp_generic_unary_op().
David Lechner
2023-04-27
all: Fix spelling mistakes based on codespell check.
Damien George
2022-09-19
py/obj: Optimise code size and performance for make_new as a slot.
Jim Mussared
2022-09-19
py/obj: Convert make_new into a mp_obj_type_t slot.
Jim Mussared
2022-09-19
py/obj: Merge getiter and iternext mp_obj_type_t slots.
Jim Mussared
2022-09-19
py/objtype: Optimise slot RAM usage for instance types.
Jim Mussared
2022-09-19
py/obj: Add accessors for type slots and use everywhere.
Jim Mussared
2022-09-19
py/obj: Add "full" and "empty" non-variable-length mp_obj_type_t.
Jim Mussared
2022-09-19
all: Make all mp_obj_type_t defs use MP_DEFINE_CONST_OBJ_TYPE.
Jim Mussared
2022-09-19
all: Simplify buffer protocol to just a "get buffer" callback.
Jim Mussared
2022-07-25
py/obj: Add support for __float__ and __complex__ functions.
Andrew Leech
2022-05-03
all: Use mp_obj_malloc everywhere it's applicable.
Jim Mussared
2022-04-20
py/objtype: Convert result of user __contains__ method to bool.
Jon Bjarni Bjarnason
2021-09-16
py/vm: Add a fast path for LOAD_ATTR on instance types.
Jim Mussared
2021-04-27
py: Add option to compile without any error messages at all.
Damien George
2020-10-10
py/objtype: Handle __dict__ attribute when type has no locals.
Jim Mussared
2020-06-24
py/objtype: Support passing in an OrderedDict to type() as the locals.
Damien George
2020-06-10
py/objtype: Use mp_obj_dict_copy() for creating obj.__dict__ attribute.
Andrew Leech
2020-06-10
py/objtype: Add __dict__ attribute for class objects.
Andrew Leech
2020-04-23
all: Format code to add space after C++-style comment start.
stijn
2020-04-13
all: Clean up error strings to use lowercase and change cannot to can't.
Damien George
2020-04-05
all: Use MP_ERROR_TEXT for all error messages.
Jim Mussared
2020-04-05
py: Use preprocessor to detect error reporting level (terse/detailed).
Jim Mussared
2020-02-28
all: Reformat C and Python source code with tools/codeformat.py.
Damien George
2020-02-21
py/objtype: Allow mp_instance_cast_to_native_base to take native obj.
Damien George
2020-02-13
py: Add mp_raise_msg_varg helper and use it where appropriate.
Damien George
2020-02-11
py: Expand type equality flags to 3 separate ones, fix bool/namedtuple.
Damien George
2020-01-30
py: Support non-boolean results for equality and inequality tests.
Nicko van Someren
2020-01-30
py/objtype: Make mp_obj_type_t.flags constants public, moved to obj.h.
Damien George
2020-01-09
py: Make mp_obj_get_type() return a const ptr to mp_obj_type_t.
Damien George
2019-12-27
py/runtime: Don't allocate iter buf for user-defined types.
Damien George
2019-10-18
py/objtype: Add type.__bases__ attribute.
Josh Lloyd
2019-09-26
py: Rename MP_QSTR_NULL to MP_QSTRnull to avoid intern collisions.
Josh Lloyd
2019-09-26
py: Add support for matmul operator @ as per PEP 465.
Damien George
2019-02-12
py: Downcase MP_xxx_SLOT_IS_FILLED inline functions.
Damien George
2019-02-12
py: Downcase all MP_OBJ_IS_xxx macros to make a more consistent C API.
Damien George
2019-02-06
py: Update my copyright info on some files.
Paul Sokolovsky
2018-12-07
py/obj: Add support for __int__ special method.
Paul Sokolovsky
[next]