(self, n)
| 1369 | _bad_values = ["ten", [10], {"ten": 10}, (10,), None, 1j, "10.1"] |
| 1370 | |
| 1371 | def coerce(self, n): |
| 1372 | return int(n) |
| 1373 | |
| 1374 | |
| 1375 | class MinBoundCIntTrait(HasTraits): |
nothing calls this directly
no outgoing calls
no test coverage detected