We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81d2ca2 commit b6fff41Copy full SHA for b6fff41
1 file changed
tests/basics/tuple1.py
@@ -17,6 +17,10 @@
17
18
print(x + (10, 100, 10000))
19
20
+# inplace add operator
21
+x += (10, 11, 12)
22
+print(x)
23
+
24
# construction of tuple from large iterator (tests implementation detail of uPy)
25
print(tuple(range(20)))
26
0 commit comments