"""
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
