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
/
tests
/
basics
/
builtin_range.py
Commit message (
Collapse
)
Author
Age
*
tests/basics/builtin_range.py: Add more tests for range slicing.
Jeff Epler
2025-04-21
|
|
|
|
Signed-off-by: Jeff Epler <jepler@gmail.com>
*
tests/basics/builtin_range: Add test for corner case of range slicing.
Damien George
2017-11-24
|
*
tests/basics/builtin_range: Add tests for negative slicing of range.
Damien George
2017-05-18
|
*
tests/basics: Add tests for raising ValueError when range() gets 0 step.
Damien George
2017-04-05
|
*
tests/basic/[a-f]*: Make skippable.
Paul Sokolovsky
2017-02-15
|
|
|
|
For small ports which don't have all features enabled.
*
tests: Improve coverage of array, range, dict, slice, exc, unicode.
Damien George
2016-10-17
|
*
tests/basics/builtin_range: PEP8 fixes.
Paul Sokolovsky
2015-10-05
|
*
tests: Test slicing a range that does not start at zero.
Tom Soulanille
2015-09-28
|
*
tests: Add some more tests to improve code coverage of corner cases.
Damien George
2015-04-05
|
*
py: Add support for start/stop/step attributes of builtin range object.
Peter D. Gray
2015-03-11
|
*
py: Improve range: add len, subscr, proper print.
Damien George
2014-08-12
Can now index ranges with integers and slices, and reverse ranges (although reversing is not very efficient). Not sure how useful this stuff is, but gets us closer to having all of Python's builtins.