()
| 211 | inspector.info(NoBoolCall()) |
| 212 | |
| 213 | def test_info_serialliar(): |
| 214 | fib_tracker = [0] |
| 215 | inspector.info(SerialLiar(fib_tracker)) |
| 216 | |
| 217 | # Nested attribute access should be cut off at 100 levels deep to avoid |
| 218 | # infinite loops: https://github.com/ipython/ipython/issues/9122 |
| 219 | nt.assert_less(fib_tracker[0], 9000) |
| 220 | |
| 221 | def support_function_one(x, y=2, *a, **kw): |
| 222 | """A simple function.""" |
nothing calls this directly
no test coverage detected