Lines Matching refs:col_offset
126 Copy source location (`lineno` and `col_offset` attributes) from
129 for attr in 'lineno', 'col_offset':
139 col_offset attributes for every node that supports them. This is rather
144 def _fix(node, lineno, col_offset):
150 if 'col_offset' in node._attributes:
151 if not hasattr(node, 'col_offset'):
152 node.col_offset = col_offset
154 col_offset = node.col_offset
156 _fix(child, lineno, col_offset)