Test whether an object is an instance of int.
(x)
| 11 | return b |
| 12 | |
| 13 | def isint(x): |
| 14 | """Test whether an object is an instance of int.""" |
| 15 | return isinstance(x, int) |
| 16 | |
| 17 | def isnum(x): |
| 18 | """Test whether an object is an instance of a built-in numeric type.""" |
no outgoing calls
no test coverage detected
searching dependent graphs…