mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
16 lines
140 B
Python
16 lines
140 B
Python
"""
|
|
mod1
|
|
"""
|
|
|
|
def func1(a, b):
|
|
"""
|
|
this is func1
|
|
"""
|
|
return a, b
|
|
|
|
|
|
class Class1(object):
|
|
"""
|
|
this is Class1
|
|
"""
|