(self, u32: int)
| 195 | """ |
| 196 | |
| 197 | def __init__(self, u32: int) -> None: |
| 198 | if u32 < 0: |
| 199 | raise AssertionError("initializing uint with negative value") |
| 200 | super(uint, self).__new__(uint, u32) |
| 201 | |
| 202 | def __repr__(self) -> str: |
| 203 | return "uint(%s)" % long.__repr__(self) |