mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 18:05:27 +07:00
25 lines
650 B
Python
25 lines
650 B
Python
<fold text='SupportStuff'>#region SupportStuff
|
|
class SupportClass(object):<fold text='...'>
|
|
pass</fold>
|
|
|
|
|
|
def supportFunction():<fold text='...'>
|
|
return</fold>
|
|
#endregion</fold>
|
|
|
|
class ImportantClass(object):<fold text='...'>
|
|
<fold text='Class body'>#region Class body
|
|
def f(self):<fold text='...'>
|
|
return 'hello world'</fold>
|
|
#endregion</fold>
|
|
pass</fold>
|
|
|
|
<fold text='VeryImportant'>#region VeryImportant
|
|
def importantFunction():<fold text='...'>
|
|
if (x > 0):<fold text='...'>
|
|
<fold text='Body'>#region Body
|
|
print "abc"
|
|
#endregion</fold></fold>
|
|
return</fold>
|
|
pass
|
|
#endregion</fold> |