소스 검색

Fix docstring in bitshift/parser/python.py

tags/v1.0^2
Benjamin Attal 10 년 전
부모
커밋
d485b87f21
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      bitshift/parser/python.py

+ 2
- 2
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


불러오는 중...
취소
저장