Add an initial version of the code from Jedi.

Still includes imports that have to be removed.
This commit is contained in:
Dave Halter
2017-05-11 07:13:23 -04:00
parent 36e0c047ae
commit 150fb4c86e
18 changed files with 4371 additions and 0 deletions

8
parso/__init__.py Normal file
View File

@@ -0,0 +1,8 @@
from parso.parser import ParserSyntaxError
from parso.pgen2.pgen import generate_grammar
from parso import python
def parse(grammar, code):
raise NotImplementedError
Parser(grammar, code)