summaryrefslogtreecommitdiffstatshomepage
path: root/py/sequence.c
Commit message (Expand)AuthorAge
* py/sequence: Remove unused len argument from mp_seq_extract_slice.Damien George2024-07-18
* all: Fix spelling mistakes based on codespell check.Damien George2023-04-27
* all: Use MP_ERROR_TEXT for all error messages.Jim Mussared2020-04-05
* all: Reformat C and Python source code with tools/codeformat.py.Damien George2020-02-28
* py: Make mp_obj_get_type() return a const ptr to mp_obj_type_t.Damien George2020-01-09
* py/objslice: Add support for indices() method on slice objects.Nicko van Someren2019-12-28
* py/sequence: Fix grammar in comment about equality.Yonatan Goldschmidt2019-07-25
* all: Remove inclusion of internal py header files.Damien George2017-10-04
* all: Use the name MicroPython consistently in commentsAlexander Steffen2017-07-31
* py/sequence: Fix boundary errors when slicing with a negative step.Damien George2017-05-18
* py: Use mp_raise_TypeError/mp_raise_ValueError helpers where possible.Damien George2017-03-28
* py/sequence: Convert mp_uint_t to size_t where appropriate.Damien George2017-03-23
* py: Use size_t as len argument and return type of mp_get_index.Damien George2017-03-23
* py/sequence: Fix reverse slicing of lists.Fabio Utzig2016-10-30
* py: Use mp_raise_msg helper function where appropriate.Damien George2016-10-17
* py/sequence: Allow to use bignums as indices in slice objects.Damien George2016-08-15
* 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, unix: Allow to compile with -Wsign-compare.Damien George2015-01-16
* py: Move to guarded includes, everywhere in py/ core.Damien George2015-01-01
* py: Convert [u]int to mp_[u]int_t where appropriate.Damien George2014-10-03
* py: Remove use of int type in obj.h.Damien George2014-08-30
* py: Change all uint to mp_uint_t in obj.h.Damien George2014-08-30
* Rename machine_(u)int_t to mp_(u)int_t.Damien George2014-07-03
* Remove unnecessary bounds check from mp_seq_get_fast_slice_indexes.Chris Angelico2014-06-10
* py: Fix configurability of builtin slice.Damien George2014-06-01
* objlist: Implement support for arbitrary (3-arg) slices.Paul Sokolovsky2014-05-25
* py: Refactor slice helpers, preparing to support arbitrary slicing.Paul Sokolovsky2014-05-25
* sequence: Throw exception for not implemented slice steps.Paul Sokolovsky2014-05-25
* py: Handle case of slice start > stop in common sequence function.Paul Sokolovsky2014-05-25
* objslice: Support arbitrary objects start, stop, and step.Paul Sokolovsky2014-05-25
* sequence: Fix yet another case of improper sequence comparison.Paul Sokolovsky2014-05-15
* py, unix: Add copyright for modules I worked closely on.Paul Sokolovsky2014-05-13
* py: Fix prefix on few sequence helpers, was incorrectly "mp_".Paul Sokolovsky2014-05-10
* bytes: Implement comparison and other binary operations.Paul Sokolovsky2014-05-10
* 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
* sequence: Further simplify sequence comparison.Paul Sokolovsky2014-04-18
* sequence: Fix glaring bug in sequence comparison.Paul Sokolovsky2014-04-18
* py: Change nlr_jump to nlr_raise, to aid in debugging.Damien George2014-04-05
* Merge map.h into obj.h.Damien George2014-03-30
* Rename rt_* to mp_*.Damien George2014-03-30
* py: Clean up includes.xbe2014-03-17
* Implement str.count and add tests for it.xbe2014-03-12
* Implement proper exception type hierarchy.Damien George2014-02-15
* Fix some int casting that failed on 64 bit architecture.Damien George2014-02-10
* Factor out mp_seq_count_obj() and implement tuple.count().Paul Sokolovsky2014-02-10
* Implement tuple.index().Paul Sokolovsky2014-02-10
* Factor out mp_seq_index_obj() function to implement .index() on sequences.Paul Sokolovsky2014-02-10
* Refactor list comparison code to mp_seq_cmp_objs().Paul Sokolovsky2014-02-08