PY-18486 Don't auto close quotes that start docstring, so PythonEnterHandler could complete it

This commit is contained in:
Mikhail Golubev
2016-03-29 17:13:10 +03:00
parent 20018e7e7d
commit 6809e81440
4 changed files with 24 additions and 8 deletions
@@ -0,0 +1,7 @@
def f(x):
"""
:param x:
:return:
"""
return 42
@@ -0,0 +1,3 @@
def f(x):
<caret>
return 42