mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-29 17:22:56 +08:00
12 lines
221 B
Python
12 lines
221 B
Python
import _testcase
|
|
|
|
|
|
def test_tuple_nested():
|
|
student_records = ((12345, "Alice"), (67890, "Bob"))
|
|
_testcase.test_tuple_nested(student_records)
|
|
|
|
|
|
def test_class_init():
|
|
t = _testcase.test()
|
|
print(t.environ)
|