class or def without spaces in between
Closed this issue · 1 comments
nobuosato commented
If I write 2 classes with out space in between, the folding of the first class absorbs
the adjacent class or def. This happens for defs with sub defs. For instances
class test()
def init()
class test2()
def init()
folds to
class test().....
Beagle commented
This issue appears to be resolved. Tested with the following code:
class test():
def init(): pass
class test2():
def init(): pass