| 114 | |
| 115 | |
| 116 | class Int(Number): |
| 117 | |
| 118 | @classmethod |
| 119 | def get_generic_type(cls): |
| 120 | return Int |
| 121 | |
| 122 | # Used to compare with other numbers for determining upcasting |
| 123 | CMP_VALUE = 2 |
| 124 | |
| 125 | # Used during data generation to keep vals in range |
| 126 | MIN = -2 ** 31 |
| 127 | MAX = -MIN - 1 |
| 128 | |
| 129 | |
| 130 | class TinyInt(Int): |
no outgoing calls
no test coverage detected