Package

pythonparse

Permalink

package pythonparse

Visibility
  1. Public
  2. All

Type Members

  1. class Statements extends AnyRef

    Permalink

    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

    Permalink

    A python abstract syntax tree

    A python abstract syntax tree

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

  2. object Expressions

    Permalink

    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

    Permalink

    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

    Permalink
  5. object WsApi extends Wrapper

    Permalink

Ungrouped