1
0
forked from VimPlug/jedi

Document pr.Simple.__init__

This commit is contained in:
Takafumi Arakaki
2013-03-03 14:17:16 +01:00
parent dc9a269d35
commit ac159bac07

View File

@@ -50,6 +50,16 @@ class Simple(Base):
'_end_pos')
def __init__(self, module, start_pos, end_pos=(None, None)):
"""
Initialize :class:`Simple`.
:type module: :class:`SubModule`
:param module: The module in which this Python object locates.
:type start_pos: 2-tuple of int
:param start_pos: Position (line, column) of the Statement.
:type end_pos: 2-tuple of int
:param end_pos: Same as `start_pos`.
"""
self._sub_module = module
self._start_pos = start_pos
self._end_pos = end_pos