MCPcopy Create free account
hub / github.com/ipython/ipython / __init__

Method __init__

IPython/core/inputtransformer2.py:187–189  ·  view source on GitHub ↗
(self, start)

Source from the content-addressed store, hash-verified

185 return self.start_line, self.start_col, self.priority
186
187 def __init__(self, start):
188 self.start_line = start[0] - 1 # Shift from 1-index to 0-index
189 self.start_col = start[1]
190
191 @classmethod
192 def find(cls, tokens_by_line):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected