mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
23 lines
254 B
Python
23 lines
254 B
Python
|
class Documented:
|
||
|
"""Documented"""
|
||
|
|
||
|
def ignored1(self):
|
||
|
pass
|
||
|
|
||
|
def ignored2(self):
|
||
|
pass
|
||
|
|
||
|
def not_ignored1(self):
|
||
|
pass
|
||
|
|
||
|
def not_ignored2(self):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class Ignored:
|
||
|
pass
|
||
|
|
||
|
|
||
|
class NotIgnored:
|
||
|
pass
|