mirror of
https://github.com/W3SLAV/micropython.git
synced 2025-06-21 04:55:38 -04:00
10 lines
149 B
Python
10 lines
149 B
Python
# tests that .../Ellipsis exists
|
|
|
|
print(...)
|
|
print(Ellipsis)
|
|
|
|
print(... == Ellipsis)
|
|
|
|
# Test that Ellipsis can be hashed
|
|
print(type(hash(Ellipsis)))
|