[gobject-introspection] pep8: Update to 99 length lines



commit 552c1f1525e37a30376790151c1ba437776682c5
Author: Colin Walters <walters verbum org>
Date:   Tue Aug 31 16:04:30 2010 -0400

    pep8: Update to 99 length lines
    
    69 is just too short for a compiler with long error messages and
    nested code.

 misc/pep8.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/misc/pep8.py b/misc/pep8.py
index fef8a54..1a50efc 100644
--- a/misc/pep8.py
+++ b/misc/pep8.py
@@ -183,7 +183,7 @@ def maximum_line_length(physical_line):
     length to 72 characters is recommended.
     """
     length = len(physical_line.rstrip())
-    if length > 79:
+    if length > 99:
         return 79, "E501 line too long (%d characters)" % length
 
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]