django/tests/sphinx/testdata/package/module.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
434 B
Python
Raw Normal View History

"""
Example docstring
"""
from django.utils.functional import cached_property
from tests.sphinx.testdata.package.wildcard_module import * # noqa
from . import other_module # noqa
from .other_module import MyOtherClass # noqa
class MyClass(object):
def __init__(self):
pass
def my_method(self):
pass
@cached_property
def my_cached_property(self):
pass
def my_function(self):
pass