()
| 240 | |
| 241 | |
| 242 | def test_info_serialliar(): |
| 243 | fib_tracker = [0] |
| 244 | inspector.info(SerialLiar(fib_tracker)) |
| 245 | |
| 246 | # Nested attribute access should be cut off at 100 levels deep to avoid |
| 247 | # infinite loops: https://github.com/ipython/ipython/issues/9122 |
| 248 | assert fib_tracker[0] < 9000 |
| 249 | |
| 250 | |
| 251 | def support_function_one(x, y=2, *a, **kw): |
nothing calls this directly
no test coverage detected
searching dependent graphs…