blob: 1bf9db70a546e508e79b5efdc8bf54cb42ec3da0 [file] [log] [blame]
Tor Norbye3a2425a2013-11-04 10:16:08 -08001<fold text='SupportStuff'>#region SupportStuff
2class SupportClass(object):<fold text='...'>
3 pass</fold>
4
5
6def supportFunction():<fold text='...'>
7 return</fold>
8#endregion</fold>
9
10class ImportantClass(object):<fold text='...'>
11 <fold text='Class body'>#region Class body
12 def f(self):<fold text='...'>
13 return 'hello world'</fold>
14 #endregion</fold>
15 pass</fold>
16
17<fold text='VeryImportant'>#region VeryImportant
18def importantFunction():<fold text='...'>
19 if (x > 0):
20 <fold text='Body'>#region Body
21 print "abc"
22 #endregion</fold>
23 return</fold>
24pass
25#endregion</fold>