10 lines
149 B
Python
Raw Normal View History

2025-10-10 16:07:00 +08:00
# tests that .../Ellipsis exists
print(...)
print(Ellipsis)
print(... == Ellipsis)
# Test that Ellipsis can be hashed
print(type(hash(Ellipsis)))