File: submodule.py

package info (click to toggle)
sphinx-autoapi 3.3.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 900 kB
  • sloc: python: 5,146; makefile: 7
file content (21 lines) | stat: -rw-r--r-- 381 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
"""
This heading will be removed
============================

This docstring will not be removed.
"""


def public_chain():
    """Part of a public resolution chain."""
    return 5


def _private_made_public():
    """A private function made public by import."""
    return 5


def public_multiple_imports():
    """A public function imported in multiple places."""
    return 5