diff options
author | Johan Dahlin <jdahlin@async.com.br> | 2009-01-03 14:35:39 +0000 |
---|---|---|
committer | Johan Dahlin <johan@src.gnome.org> | 2009-01-03 14:35:39 +0000 |
commit | 5a4afe2a77d0ff7d9fea13dd93c3304a6ca993de (patch) | |
tree | ca158e2b623b2745c078d289f4601d61ad936d9c /misc | |
parent | bc88ef7bcda59b15988d27517a4f4f7e0672e33b (diff) | |
download | gobject-introspection-5a4afe2a77d0ff7d9fea13dd93c3304a6ca993de.tar.gz |
Disable blank line check, it works differently under Python 2.5 from 2.6
2009-01-03 Johan Dahlin <jdahlin@async.com.br>
* misc/pep8.py:
Disable blank line check, it works differently under
Python 2.5 from 2.6 and was rather annoying from the start.
svn path=/trunk/; revision=999
Diffstat (limited to 'misc')
-rw-r--r-- | misc/pep8.py | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/misc/pep8.py b/misc/pep8.py index e2585240..3b6248c2 100644 --- a/misc/pep8.py +++ b/misc/pep8.py @@ -192,34 +192,6 @@ def maximum_line_length(physical_line): ############################################################################## -def blank_lines(logical_line, blank_lines, indent_level, line_number, - previous_logical): - """ - Separate top-level function and class definitions with two blank lines. - - Method definitions inside a class are separated by a single blank line. - - Extra blank lines may be used (sparingly) to separate groups of related - functions. Blank lines may be omitted between a bunch of related - one-liners (e.g. a set of dummy implementations). - - Use blank lines in functions, sparingly, to indicate logical sections. - """ - if line_number == 1: - return # Don't expect blank lines before the first line - if previous_logical.startswith('@'): - return # Don't expect blank lines after function decorator - if (logical_line.startswith('def ') or - logical_line.startswith('class ') or - logical_line.startswith('@')): - if indent_level > 0 and blank_lines != 1: - return 0, "E301 expected 1 blank line, found %d" % blank_lines - if indent_level == 0 and blank_lines != 2: - return 0, "E302 expected 2 blank lines, found %d" % blank_lines - if blank_lines > 2: - return 0, "E303 too many blank lines (%d)" % blank_lines - - def extraneous_whitespace(logical_line): """ Avoid extraneous whitespace in the following situations: |