8 lines
139 B
Python
8 lines
139 B
Python
|
"""This module contains code for running the tests in SymPy.
|
||
|
"""
|
||
|
from .runtests import test, doctest
|
||
|
|
||
|
__all__ = [
|
||
|
'test', 'doctest',
|
||
|
]
|