mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
16 lines
263 B
C++
16 lines
263 B
C++
# Literally included file using Python highlighting
|
|
|
|
@class_decorator
|
|
@other_decorator()
|
|
class TheClass(object):
|
|
|
|
@method_decorator
|
|
@other_decorator()
|
|
def the_method():
|
|
pass
|
|
|
|
@function_decorator
|
|
@other_decorator()
|
|
def the_function():
|
|
pass
|