()
| 424 | |
| 425 | |
| 426 | def test_qmark_getindex_negatif(): |
| 427 | def dummy(): |
| 428 | """ |
| 429 | MARKER 3 |
| 430 | """ |
| 431 | |
| 432 | container = [dummy] |
| 433 | with cleanup_user_ns(container=container): |
| 434 | with AssertPrints("MARKER 3"): |
| 435 | ip.run_cell("container[-1]?") |
| 436 | assert "container" not in ip.user_ns.keys() |
| 437 | |
| 438 | |
| 439 | def test_pinfo_nonascii(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…