mirror of
https://github.com/gryf/tagbar.git
synced 2025-12-17 11:30:28 +01:00
14 lines
275 B
Python
Executable File
14 lines
275 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
class ClassName(object):
|
|
"""docstring for ClassName"""
|
|
def __init__(self, arg):
|
|
super(ClassName, self).__init__()
|
|
self.arg = arg
|
|
def function1(self):
|
|
foo = """
|
|
foostring
|
|
"""
|
|
def function2(self):
|
|
pass
|