From c74aa715499fd0429e1043a31a3aec4bbd955ab5 Mon Sep 17 00:00:00 2001 From: David Halter Date: Fri, 6 Sep 2013 01:49:46 +0430 Subject: [PATCH] update development docs with parser changes --- docs/docs/development.rst | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/docs/development.rst b/docs/docs/development.rst index 9d40c0b0..f66022ed 100644 --- a/docs/docs/development.rst +++ b/docs/docs/development.rst @@ -44,25 +44,25 @@ The Jedi Core The core of Jedi consists of three parts: -- :ref:`Parser ` +- :ref:`Parser ` - :ref:`Python code evaluation ` - :ref:`API ` Most people are probably interested in :ref:`code evaluation `, because that's where all the magic happens. I need to introduce the :ref:`parser -` first, because :mod:`evaluate` uses it extensively. +` first, because :mod:`evaluate` uses it extensively. -.. _parsing: +.. _parser: -Parser (parsing.py) -~~~~~~~~~~~~~~~~~~~ +Parser (parser/__init__.py) +~~~~~~~~~~~~~~~~~~~~~~~~~~~ -.. automodule:: parsing +.. automodule:: parser -Parser Representation (parser_representation.py) +Parser Representation (parser/representation.py) ++++++++++++++++++++++++++++++++++++++++++++++++ -.. automodule:: parsing_representation +.. automodule:: parser.representation Class inheritance diagram: @@ -144,10 +144,10 @@ Dynamic Arrays & Function Parameters (dynamic.py) .. _fast_parser: -Fast Parser (fast_parser.py) +Fast Parser (parser/fast.py) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -.. automodule:: fast_parser +.. automodule:: parser.fast .. _docstrings: