X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/3eea3aad864b83af3b6c477c32f15eb821fe9341..ed91dd4de63215aa3dde1f6da8659fb35ff191d8:/tests/function2.py diff --git a/tests/function2.py b/tests/function2.py index e262e05..0c9da12 100644 --- a/tests/function2.py +++ b/tests/function2.py @@ -12,6 +12,15 @@ def f( very_long_argument_name2=very_long_value_for_the_argument, **kwargs, ) +def g(): + "Docstring." + def inner(): + pass + print("Inner defs should breathe a little.") +def h(): + def inner(): + pass + print("Inner defs should breathe a little.") # output @@ -26,3 +35,19 @@ def f(a, **kwargs) -> A: very_long_argument_name2=very_long_value_for_the_argument, **kwargs, ) + + +def g(): + "Docstring." + + def inner(): + pass + + print("Inner defs should breathe a little.") + + +def h(): + def inner(): + pass + + print("Inner defs should breathe a little.")