mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
Because DocStringParameterReference doesn't implement PsiPolyVariantReference I had to adjust helper methods like PyResolveTestCase#findReferenceByMarker and PyMultiFileResolveTestCase#doResolve in resolve tests to handle normal PsiReference reference under cursor.
10 lines
281 B
Python
10 lines
281 B
Python
"""Attributes:
|
|
|
|
module_level_variable1 (int): Module level variables may be documented in
|
|
<ref>
|
|
either the ``Attributes`` section of the module docstring, or in an
|
|
inline docstring immediately following the variable.
|
|
|
|
"""
|
|
|
|
module_level_variable1 = 12345 |