--- a/Plugins/CheckerPlugins/CodeStyleChecker/DocStyleChecker.py Fri Oct 04 17:21:14 2013 +0200 +++ b/Plugins/CheckerPlugins/CodeStyleChecker/DocStyleChecker.py Fri Oct 04 17:35:44 2013 +0200 @@ -4,7 +4,7 @@ # """ -Module implementing a checker for PEP-257 documentation string conventions. +Module implementing a checker for documentation string conventions. """ # @@ -102,7 +102,7 @@ class DocStyleChecker(object): """ - Class implementing a checker for PEP-257 documentation string conventions. + Class implementing a checker for documentation string conventions. """ Codes = [ "D101", "D102", "D103", "D104", "D105", @@ -429,7 +429,7 @@ def run(self): """ Public method to check the given source for violations of doc string - conventions according to PEP-257. + conventions. """ if not self.__source or not self.__filename: # don't do anything, if essential data is missing