mirror of
https://github.com/readthedocs/sphinx-autoapi
synced 2024-11-11 19:10:58 +00:00
7 lines
155 B
Python
7 lines
155 B
Python
class PrivateClass(object):
|
|
"""A private class with public facing methods."""
|
|
|
|
def public_method():
|
|
"""This is public."""
|
|
return 5
|