mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 11:44:39 +07:00
PY-6907 Paste leads to syntactically incorrect code in case of dedent in copied text
8 lines
145 B
Python
8 lines
145 B
Python
class A:
|
|
def foo(self, dct, key):
|
|
try:
|
|
<selection> return dct[key]
|
|
except KeyError:
|
|
pass
|
|
</selection>
|