Packages

p

pythonparse

package pythonparse

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. class Statements extends AnyRef

    Python's statement grammar.

    Python's statement grammar. This can only be used in statement-blocks, and is sensitive to newlines and indentation to determine nesting

    Manually transcribed from https://docs.python.org/2/reference/grammar.html

Value Members

  1. object Ast

    A python abstract syntax tree

    A python abstract syntax tree

    Basically transcribed from https://docs.python.org/2/library/ast.html

  2. object Expressions

    Python's expression grammar.

    Python's expression grammar. This is stuff that can be used within a larger expression. Everything here ignores whitespace and does not care about indentation

    Manually transcribed from https://docs.python.org/2/reference/grammar.html

  3. object Lexical

    Python's lexical grammar; how basic tokens get parsed.

    Python's lexical grammar; how basic tokens get parsed. This stuff is sensitive to whitespace, which can only appear where it's explicitly stated to be part of the grammar.

    Manually transcribed from https://docs.python.org/2/reference/lexical_analysis.html

  4. object Statements extends Statements

Ungrouped