From d485b87f211d40124f4396bc46d505300ded2336 Mon Sep 17 00:00:00 2001 From: Benjamin Attal Date: Mon, 14 Apr 2014 19:10:32 -0400 Subject: [PATCH] Fix docstring in bitshift/parser/python.py --- bitshift/parser/python.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bitshift/parser/python.py b/bitshift/parser/python.py index 1b86f3a..16e1dd4 100644 --- a/bitshift/parser/python.py +++ b/bitshift/parser/python.py @@ -16,11 +16,11 @@ class PyTreeCutter(ast.NodeVisitor): def start_n_end(self, big_node): """ - Helper function to get the start and end lines of a code node. + Helper function to get the start and end lines of an AST node. :param big_node: The node. - :type big_node: ast.FunctionDef, ast.ClassDef, ast.Module + :type big_node: ast.FunctionDef or ast.ClassDef or ast.Module """ start_line = big_node.lineno