Return useful information about IPython and the system, as a dict.
()
| 93 | ) |
| 94 | |
| 95 | def get_sys_info(): |
| 96 | """Return useful information about IPython and the system, as a dict.""" |
| 97 | p = os.path |
| 98 | path = p.realpath(p.dirname(p.abspath(p.join(__file__, '..')))) |
| 99 | return pkg_info(path) |
| 100 | |
| 101 | def sys_info(): |
| 102 | """Return useful information about IPython and the system, as a string. |