/opt/imh-python/lib/python3.9/site-packages/IPython/testing/plugin
NameSizeModeActions
__pycache__/-0755rm
dtexample.py29210644editdlrm
ipdoctest.py118810644editdlrm
pytest_ipdoctest.py296890644editdlrm
README.txt10430644editdlrm
setup.py5390644editdlrm
simple.py7270644editdlrm
simplevars.py240644editdlrm
test_combo.txt9230644editdlrm
test_example.txt7300644editdlrm
test_exampleip.txt8140644editdlrm
test_ipdoctest.py19070644editdlrm
test_refs.py7150644editdlrm
__init__.py00644editdlrm
Edit: /opt/imh-python/lib/python3.9/site-packages/IPython/testing/plugin/setup.py (539B)
#!/usr/bin/env python """A Nose plugin to support IPython doctests. """ from setuptools import setup setup(name='IPython doctest plugin', version='0.1', author='The IPython Team', description = 'Nose plugin to load IPython-extended doctests', license = 'LGPL', py_modules = ['ipdoctest'], entry_points = { 'nose.plugins.0.10': ['ipdoctest = ipdoctest:IPythonDoctest', 'extdoctest = ipdoctest:ExtensionDoctest', ], }, )