Return useful information about IPython and the system, as a dict.
()
| 95 | ) |
| 96 | |
| 97 | def get_sys_info() -> dict: |
| 98 | """Return useful information about IPython and the system, as a dict.""" |
| 99 | path = Path(__file__, "..").resolve().parent |
| 100 | return pkg_info(str(path)) |
| 101 | |
| 102 | def sys_info() -> str: |
| 103 | """Return useful information about IPython and the system, as a string. |