1
0
forked from VimPlug/jedi

Rename SubModule to Module, because that's a more fitting description. There were reasons for the name before the new fast parser, but those don't exist anymore.

This commit is contained in:
Dave Halter
2015-02-05 14:16:43 +01:00
parent c689573b0b
commit 0c1bbf78e2
4 changed files with 9 additions and 24 deletions

View File

@@ -10,7 +10,6 @@ from jedi._compatibility import use_metaclass, unicode
from jedi import settings
from jedi.parser import Parser
from jedi.parser import tree as pr
from jedi.parser import tokenize
from jedi import cache
from jedi import debug
from jedi.parser.tokenize import (source_tokens, NEWLINE,
@@ -19,7 +18,7 @@ from jedi.parser.tokenize import (source_tokens, NEWLINE,
FLOWS = ['if', 'else', 'elif', 'while', 'with', 'try', 'except', 'finally', 'for']
class FastModule(pr.SubModule):
class FastModule(pr.Module):
type = 'file_input'
def __init__(self, module_path):