mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
15 lines
264 B
Python
15 lines
264 B
Python
class Foo:
|
|
"""docstring of Foo."""
|
|
|
|
def meth(self):
|
|
"""docstring of meth."""
|
|
pass
|
|
|
|
def skipmeth(self):
|
|
"""docstring of skipmeth."""
|
|
pass
|
|
|
|
def _privatemeth(self):
|
|
"""docstring of _privatemeth."""
|
|
pass
|