mirror of
https://github.com/django/django.git
synced 2024-11-22 11:57:34 +01:00
b691accea1
Co-authored-by: David Smith <smithdc@gmail.com> Co-authored-by: Natalia <124304+nessita@users.noreply.github.com>
26 lines
434 B
Python
26 lines
434 B
Python
"""
|
|
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
|