1
0
forked from VimPlug/jedi

Remove the position_modifier from the parser.

This commit is contained in:
Dave Halter
2016-09-18 00:50:31 +02:00
parent ed71d05ed7
commit 885cf62a12
11 changed files with 62 additions and 67 deletions

View File

@@ -172,7 +172,7 @@ class FakeName(tree.Name):
In case is_definition is defined (not None), that bool value will be
returned.
"""
super(FakeName, self).__init__(tree.zero_position_modifier, name_str, start_pos)
super(FakeName, self).__init__(name_str, start_pos)
self.parent = parent
self._is_definition = is_definition