mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
Introduce PyBreadcrumbsInfoProvider which supports: classes and functions (incl. async) definitions, lambdas, try-except-else-finally, if-elif-else, for-else (incl. async), while-else, with and key-value statements
6 lines
67 B
Python
6 lines
67 B
Python
try:
|
|
print "abc"
|
|
except:
|
|
print "def"
|
|
else:
|
|
print "g<caret>hi" |