Files
RustPython/tests/snippets/ellipsis.py
2019-03-05 07:19:00 +01:00

9 lines
88 B
Python

a = ...
b = ...
c = type(a)() # Test singleton behavior
assert a is b
assert b is c