(name)
| 325 | |
| 326 | # not a decorator itself, returns a dummy function to be used as setup |
| 327 | def skip_file_no_x11(name): |
| 328 | warnings.warn("The function `skip_file_no_x11` is deprecated since IPython 4.0", |
| 329 | DeprecationWarning, stacklevel=2) |
| 330 | return decorated_dummy(skip_if_no_x11, name) if _x11_skip_cond else None |
| 331 | |
| 332 | # Other skip decorators |
| 333 |
nothing calls this directly
no test coverage detected