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
"""
|
|
mod2
|
|
"""
|
|
|
|
def func2(a, b):
|
|
"""
|
|
this is func2
|
|
"""
|
|
return a, b
|
|
|
|
|
|
class Class2(object):
|
|
"""
|
|
this is Class2
|
|
"""
|