--- a/UtilitiesPython2/Pep8NamingCheckerPy2.py Sun Sep 29 15:54:10 2013 +0200 +++ b/UtilitiesPython2/Pep8NamingCheckerPy2.py Sun Sep 29 18:22:08 2013 +0200 @@ -200,7 +200,7 @@ def __error(self, node, code): """ - Private method to build the error information + Private method to build the error information. @param node AST node to report an error for @param code error code to report (string) @@ -235,6 +235,7 @@ Private class to check the given node for a name to be avoided (N831). @param node AST note to check + @param parents list of parent nodes @return tuple giving line number, offset within line and error code (integer, integer, string) """ @@ -270,6 +271,7 @@ Classes for internal use have a leading underscore in addition. @param node AST note to check + @param parents list of parent nodes @return tuple giving line number, offset within line and error code (integer, integer, string) """ @@ -288,6 +290,7 @@ (e.g. threading.py), to retain backwards compatibility. @param node AST note to check + @param parents list of parent nodes @return tuple giving line number, offset within line and error code (integer, integer, string) """ @@ -307,6 +310,7 @@ first argument. A method should have 'self' as the first argument. @param node AST note to check + @param parents list of parent nodes @return tuple giving line number, offset within line and error code (integer, integer, string) """ @@ -351,6 +355,7 @@ Local variables in functions should be lowercase. @param node AST note to check + @param parents list of parent nodes @return tuple giving line number, offset within line and error code (integer, integer, string) """ @@ -376,6 +381,7 @@ Module and package names should be lowercase. @param node AST note to check + @param parents list of parent nodes @return tuple giving line number, offset within line and error code (integer, integer, string) """ @@ -397,6 +403,7 @@ naming convention (N811, N812, N813, N814). @param node AST note to check + @param parents list of parent nodes @return tuple giving line number, offset within line and error code (integer, integer, string) """