mirror of
https://github.com/pocketpy/pocketpy
synced 2025-12-07 18:50:19 +00:00
* 通过引发py_call错误覆盖相关调用者的ok==false分支 * Revert "通过引发py_call错误覆盖相关调用者的ok==false分支" This reverts commit 36dc0b5d81a02a83dfdeca2d4d6d265f5f793b4b. * add test * rename test files * fix bugs * fix bugs
10 lines
110 B
Python
10 lines
110 B
Python
a = b = 1,2
|
|
|
|
assert a == b
|
|
assert a == (1,2)
|
|
|
|
a = 1,2
|
|
|
|
a = b = c = d = '123'
|
|
|
|
assert a == b == c == d == '123' |