pocketpy/tests/040_line_continue.py
zhs628 fc991ab697
Increase coverage 2025 12 01 (#412)
* 通过引发py_call错误覆盖相关调用者的ok==false分支

* Revert "通过引发py_call错误覆盖相关调用者的ok==false分支"

This reverts commit 36dc0b5d81a02a83dfdeca2d4d6d265f5f793b4b.

* add test

* rename test files

* fix bugs

* fix bugs
2025-12-04 21:01:29 +08:00

31 lines
299 B
Python

a = 1 + 2 \
+ 3
assert a == 6
assert 1 + 2 \
+ 3 == 6
assert 1 + 2 + \
3 + \
4 == 10
assert 1 + 2 + \
3 + \
4 + 5 + 6 \
== 21
if 1 and 2 \
and 3 \
and 4 \
and 5:
assert True
else:
assert False
1 and 2 \
and 3 \
and 4
a = 1
assert a == 1