single_module_links

 1from .helpers import something
 2from .types import BigThing
 3
 4
 5def abc():
 6    '''
 7    Test that submodules are linked to when documenting a single module.
 8
 9    Do `.helpers.something` with a `.types.BigThing`
10    '''
11    something()
12    BigThing()
def abc():
 6def abc():
 7    '''
 8    Test that submodules are linked to when documenting a single module.
 9
10    Do `.helpers.something` with a `.types.BigThing`
11    '''
12    something()
13    BigThing()

Test that submodules are linked to when documenting a single module.

Do .helpers.something with a .types.BigThing