Skip to content
Snippets Groups Projects
Commit b6fff418 authored by Damien George's avatar Damien George
Browse files

tests/basics: Add test for tuple inplace add.

parent 81d2ca2b
No related branches found
No related tags found
No related merge requests found
......@@ -17,6 +17,10 @@ print(x[2:3])
print(x + (10, 100, 10000))
# inplace add operator
x += (10, 11, 12)
print(x)
# construction of tuple from large iterator (tests implementation detail of uPy)
print(tuple(range(20)))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment