index
:
micropython
master
parse-bytecode
v1.22-release
v1.24-release
MicroPython - a lean and efficient Python implementation for microcontrollers and constrained systems
Aslak Raanes
summary
refs
log
tree
commit
diff
stats
homepage
log msg
author
committer
range
path:
root
/
py
/
objzip.c
Commit message (
Expand
)
Author
Age
*
all: Remove the "STATIC" macro and just use "static" instead.
Angus Gratton
2024-03-07
*
py/obj: Change sizeof to offsetof in mp_obj_malloc_var macro.
Damien George
2024-02-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
*
all: Make all mp_obj_type_t defs use MP_DEFINE_CONST_OBJ_TYPE.
Jim Mussared
2022-09-19
*
all: Use mp_obj_malloc everywhere it's applicable.
Jim Mussared
2022-05-03
*
py: Downcase all MP_OBJ_IS_xxx macros to make a more consistent C API.
Damien George
2019-02-12
*
all: Use the name MicroPython consistently in comments
Alexander Steffen
2017-07-31
*
py/objzip: Convert mp_uint_t to size_t.
Damien George
2017-03-30
*
py: Add iter_buf to getiter type method.
Damien George
2017-02-16
*
py: Get rid of assert() in method argument checking functions.
Paul Sokolovsky
2016-08-12
*
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-11
*
py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.
Damien George
2015-11-29
*
py, unix: Allow to compile with -Wunused-parameter.
Damien George
2015-01-20
*
py: Move to guarded includes, everywhere in py/ core.
Damien George
2015-01-01
*
py: Small simplifications in tuple and list accessors.
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-30
*
py: Use mp_arg_check_num in more places.
Damien George
2014-05-11
*
Add license header to (almost) all files.
Damien George
2014-05-03
*
py, unix: Make "mpconfig.h" be first included, as other headers depend on it.
Paul Sokolovsky
2014-05-02
*
py: Add MP_OBJ_STOP_ITERATION and make good use of it.
Damien George
2014-04-17
*
objzip: Use mp_identity().
Paul Sokolovsky
2014-03-30
*
Rename rt_* to mp_*.
Damien George
2014-03-30
*
py: Rename old const type objects to mp_type_* for consistency.
Damien George
2014-03-29
*
py: Replace mp_const_stop_iteration object with MP_OBJ_NULL.
Damien George
2014-03-26
*
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-15
*
Replace global "static" -> "STATIC", to allow "analysis builds". Part 1.
Paul Sokolovsky
2014-02-12
*
Revamp qstrs: they now include length and hash.
Damien George
2014-01-21
*
Make VM stack grow upwards, and so no reversed args arrays.
Damien George
2014-01-18
*
Tidy up.
Damien George
2014-01-14
*
added zip()
John R. Lenton
2014-01-13