UtilitiesPython2/CodeStyleChecker.py

changeset 2984
031cceaa8b01
parent 2983
f2f33024b001
child 3034
7ce719013078
diff -r f2f33024b001 -r 031cceaa8b01 UtilitiesPython2/CodeStyleChecker.py
--- a/UtilitiesPython2/CodeStyleChecker.py	Fri Oct 04 17:21:14 2013 +0200
+++ b/UtilitiesPython2/CodeStyleChecker.py	Fri Oct 04 17:35:44 2013 +0200
@@ -120,7 +120,7 @@
         else:
             ignore = []
         
-        # check PEP-8
+        # check coding style
         styleGuide = pep8.StyleGuide(
             reporter=CodeStyleReport,
             repeat=repeat,
@@ -131,14 +131,14 @@
         )
         report = styleGuide.check_files([filename])
         
-        # check PEP-257
-        pep257Checker = DocStyleChecker(
+        # check documentation style
+        docStyleChecker = DocStyleChecker(
             source, filename, select, ignore, [], repeat,
             maxLineLength=max_line_length, docType=docType)
-        pep257Checker.run()
+        docStyleChecker.run()
         
         
-        errors = report.errors + pep257Checker.errors
+        errors = report.errors + docStyleChecker.errors
         
         if len(errors) > 0:
             errors.sort(key=lambda a: a[1])
@@ -156,9 +156,9 @@
             for key in report.counters:
                 if key.startswith(("E", "N", "W")):
                     print key, report.counters[key]
-            for key in pep257Checker.counters:
+            for key in docStyleChecker.counters:
                 if key.startswith("D"):
-                    print key, pep257Checker.counters[key]
+                    print key, docStyleChecker.counters[key]
         else:
             print "NO_PEP8"
             print filename

eric ide

mercurial