()
| 351 | return not hasattr(main, "__file__") |
| 352 | |
| 353 | def _is_debugger(): |
| 354 | return sys.gettrace() is not None |
| 355 | |
| 356 | if usecwd or _is_interactive() or _is_debugger() or getattr(sys, "frozen", False): |
| 357 | # Should work without __file__, e.g. in REPL or IPython notebook. |
no outgoing calls
no test coverage detected
searching dependent graphs…