File: _private_module.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 (11 lines) | stat: -rw-r--r-- 228 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
class PrivateClass:
    """A private class with public facing methods."""

    def public_method():
        """This is public."""
        return 5


def imported_function():
    """A function that gets imported."""
    return 1