Files
Pyarmor-Static-Unpack-1shot/tests/input/test_docstring.py
Michael Hansen 391ba6502d Migrate additional tests which previously didn't have reference source to
the new test system, including new reference source.
2019-10-07 17:06:08 -07:00

36 lines
545 B
Python

"""
Module docstring
"""
def Doc_Test():
"""Function docstring"""
pass
class XXX:
"""Class docstring"""
def __init__(self):
"""__init__: Member function docstring"""
self.a = 1
def XXX22():
"""XXX22: Nested function docstring"""
pass
def XXX11():
"""XXX11: Member Function docstring"""
pass
def XXX12():
foo = 'XXX12: Normal string'
def XXX13():
pass
def Y11():
def Y22():
def Y33():
pass
print __doc__