sphinx/tests/roots/test-directive-code/py-decorators.inc
Ray Lehtiniemi 06b6e07b98 Add tests
Signed-off-by: Ray Lehtiniemi <rayl@mail.com>
2017-03-11 13:40:47 -07:00

17 lines
287 B
C++

# Literally included file using Python highlighting
# -*- coding: utf-8 -*-
@class_decorator
@other_decorator()
class TheClass(object):
@method_decorator
@other_decorator()
def the_method():
pass
@function_decorator
@other_decorator()
def the_function():
pass