DEBSOURCES
Skip Quicknav
sources / micropython / 1.25.0%2Bds-1 / tests / basics / special_methods_intbig.py
12345678
# Test class special methods, that use a bigint. class A: def __int__(self): return 1 << 100 print(int(A()))