mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
Python Console generates declaration stubs where docstring for a class is moved to its __init__. It's a somewhat add-hoc solution for the problem, we should probably fix this controversial behavior of the debugger as well.
8 lines
111 B
Python
8 lines
111 B
Python
class MyClass:
|
|
def __init__(self):
|
|
"""
|
|
Constructor docstring
|
|
"""
|
|
|
|
|
|
My<the_ref>Class |