1
0
forked from VimPlug/jedi

fix sphinx warnings/errors

This commit is contained in:
David Halter
2013-02-04 11:09:07 +01:00
parent ed61f28549
commit 3faf50049b
3 changed files with 5 additions and 8 deletions

View File

@@ -1,7 +1,4 @@
"""
Maintainer: David Halter <davidhalter88@gmail.com>
Version: 0.1
py_fuzzyparser parses python code, with the goal of a good representation of
the code within a tree structure. Variables, Classes and Functions are defined
within this tree structure, containing their exact locations in the code.
@@ -17,9 +14,9 @@ changed, was programmed by Aaron Griffin <aaronmgriffin@gmail.com>.
**The structure of the following script:**
A Scope has
- imports (Import)
- subscopes (Scope, Class, Function, Flow)
- statements (Statement)
- imports (Import)
- subscopes (Scope, Class, Function, Flow)
- statements (Statement)
All these objects have `Name`s. `Call` and `Array` are used as detail objects
of a statement.