Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multiline comments in Kivy

I would like to know how to use multiline comments in a kivy (.kv) file. I tried the following codes and neither of them worked but the one line comment '#' works well.

"""
I am
a multiline
comment.
"""

'''
Me
too...
'''
like image 702
Johnny Avatar asked Jun 01 '15 22:06

Johnny


1 Answers

Kivy doesn't support multiline comments and it seems they aren't gonna add it any time soon.

You can check a PR about this here.

like image 114
Radu Diță Avatar answered Sep 22 '22 12:09

Radu Diță