mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
On the whole, we don't touch these blank lines (as opposed to deleting them previously) unless they exceed the limit specified in settings (Keep maximum blank lines in declarations). If someone wants to always put a blank line before the first method, as in PY-1765, they can use this new option.
11 lines
120 B
Python
11 lines
120 B
Python
class T1(object):
|
|
def m1(self):
|
|
pass
|
|
|
|
|
|
# comment about T2
|
|
|
|
class T2(object):
|
|
def m2(self):
|
|
pass
|