mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
16 lines
206 B
Python
16 lines
206 B
Python
"""
|
|
module with trailing underscores everywhere
|
|
"""
|
|
|
|
|
|
class class_(object):
|
|
""" Class """
|
|
def method_(_arg):
|
|
""" Method """
|
|
pass
|
|
|
|
|
|
def function_(_arg):
|
|
""" Function """
|
|
pass
|