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
origin/v1.26-release
The MicroPython project
Sven Wegener
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
py
/
sequence.c
Age
Commit message (
Expand
)
Author
2014-10-03
py: Convert [u]int to mp_[u]int_t where appropriate.
Damien George
2014-08-30
py: Remove use of int type in obj.h.
Damien George
2014-08-30
py: Change all uint to mp_uint_t in obj.h.
Damien George
2014-07-03
Rename machine_(u)int_t to mp_(u)int_t.
Damien George
2014-06-10
Remove unnecessary bounds check from mp_seq_get_fast_slice_indexes.
Chris Angelico
2014-06-01
py: Fix configurability of builtin slice.
Damien George
2014-05-25
objlist: Implement support for arbitrary (3-arg) slices.
Paul Sokolovsky
2014-05-25
py: Refactor slice helpers, preparing to support arbitrary slicing.
Paul Sokolovsky
2014-05-25
sequence: Throw exception for not implemented slice steps.
Paul Sokolovsky
2014-05-25
py: Handle case of slice start > stop in common sequence function.
Paul Sokolovsky
2014-05-25
objslice: Support arbitrary objects start, stop, and step.
Paul Sokolovsky
2014-05-15
sequence: Fix yet another case of improper sequence comparison.
Paul Sokolovsky
2014-05-13
py, unix: Add copyright for modules I worked closely on.
Paul Sokolovsky
2014-05-10
py: Fix prefix on few sequence helpers, was incorrectly "mp_".
Paul Sokolovsky
2014-05-10
bytes: Implement comparison and other binary operations.
Paul Sokolovsky
2014-05-03
Add license header to (almost) all files.
Damien George
2014-05-02
py, unix: Make "mpconfig.h" be first included, as other headers depend on it.
Paul Sokolovsky
2014-04-18
sequence: Further simplify sequence comparison.
Paul Sokolovsky
2014-04-18
sequence: Fix glaring bug in sequence comparison.
Paul Sokolovsky
2014-04-05
py: Change nlr_jump to nlr_raise, to aid in debugging.
Damien George
2014-03-30
Merge map.h into obj.h.
Damien George
2014-03-30
Rename rt_* to mp_*.
Damien George
2014-03-17
py: Clean up includes.
xbe
2014-03-12
Implement str.count and add tests for it.
xbe
2014-02-15
Implement proper exception type hierarchy.
Damien George
2014-02-10
Fix some int casting that failed on 64 bit architecture.
Damien George
2014-02-10
Factor out mp_seq_count_obj() and implement tuple.count().
Paul Sokolovsky
2014-02-10
Implement tuple.index().
Paul Sokolovsky
2014-02-10
Factor out mp_seq_index_obj() function to implement .index() on sequences.
Paul Sokolovsky
2014-02-08
Refactor list comparison code to mp_seq_cmp_objs().
Paul Sokolovsky
2014-02-02
Implement str/bytes rich comparisons.
Paul Sokolovsky
2014-02-02
Factor out m_seq_get_fast_slice_indexes() fucntions as sequence helper.
Paul Sokolovsky
2014-01-21
Merge branch 'master' of github.com:micropython/micropython
Damien George
2014-01-21
sequence.c: Start to refactor sequence operations for reuse among types.
Paul Sokolovsky