summaryrefslogtreecommitdiffstatshomepage
path: root/py/objzip.c
Commit message (Expand)AuthorAge
* all: Remove the "STATIC" macro and just use "static" instead.Angus Gratton2024-03-07
* py/obj: Change sizeof to offsetof in mp_obj_malloc_var macro.Damien George2024-02-19
* py/obj: Convert make_new into a mp_obj_type_t slot.Jim Mussared2022-09-19
* py/obj: Merge getiter and iternext mp_obj_type_t slots.Jim Mussared2022-09-19
* all: Make all mp_obj_type_t defs use MP_DEFINE_CONST_OBJ_TYPE.Jim Mussared2022-09-19
* all: Use mp_obj_malloc everywhere it's applicable.Jim Mussared2022-05-03
* py: Downcase all MP_OBJ_IS_xxx macros to make a more consistent C API.Damien George2019-02-12
* all: Use the name MicroPython consistently in commentsAlexander Steffen2017-07-31
* py/objzip: Convert mp_uint_t to size_t.Damien George2017-03-30
* py: Add iter_buf to getiter type method.Damien George2017-02-16
* py: Get rid of assert() in method argument checking functions.Paul Sokolovsky2016-08-12
* py: Change first arg of type.make_new from mp_obj_t to mp_obj_type_t*.Damien George2016-01-11
* py: Change type of .make_new and .call args: mp_uint_t becomes size_t.Damien George2016-01-11
* py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.Damien George2015-11-29
* py, unix: Allow to compile with -Wunused-parameter.Damien George2015-01-20
* py: Move to guarded includes, everywhere in py/ core.Damien George2015-01-01
* py: Small simplifications in tuple and list accessors.Damien George2014-08-30
* Change some parts of the core API to use mp_uint_t instead of uint/int.Damien George2014-08-30
* py: Use mp_arg_check_num in more places.Damien George2014-05-11
* Add license header to (almost) all files.Damien George2014-05-03
* py, unix: Make "mpconfig.h" be first included, as other headers depend on it.Paul Sokolovsky2014-05-02
* py: Add MP_OBJ_STOP_ITERATION and make good use of it.Damien George2014-04-17
* objzip: Use mp_identity().Paul Sokolovsky2014-03-30
* Rename rt_* to mp_*.Damien George2014-03-30
* py: Rename old const type objects to mp_type_* for consistency.Damien George2014-03-29
* py: Replace mp_const_stop_iteration object with MP_OBJ_NULL.Damien George2014-03-26
* Implement proper exception type hierarchy.Damien George2014-02-15
* Change mp_obj_type_t.name from const char * to qstr.Damien George2014-02-15
* Replace global "static" -> "STATIC", to allow "analysis builds". Part 1.Paul Sokolovsky2014-02-12
* Revamp qstrs: they now include length and hash.Damien George2014-01-21
* Make VM stack grow upwards, and so no reversed args arrays.Damien George2014-01-18
* Tidy up.Damien George2014-01-14
* added zip()John R. Lenton2014-01-13