language-python-0.5.8: src/Language/Python/Version3.hs
-----------------------------------------------------------------------------
-- |
-- Module : Language.Python.Version3
-- Copyright : (c) 2009 Bernie Pope
-- License : BSD-style
-- Maintainer : bjpop@csse.unimelb.edu.au
-- Stability : experimental
-- Portability : ghc
--
-- A convenient re-export of the parser and lexer for version 3.x of Python.
--
-- See:
--
-- * <http://docs.python.org/3.1/reference/index.html> for an overview of the language.
--
-- * <http://docs.python.org/3.1/reference/grammar.html> for the full grammar.
--
-- * <http://docs.python.org/3.1/reference/toplevel_components.html> for a description of
-- the various Python top-levels, which correspond to the parsers provided here.
-----------------------------------------------------------------------------
module Language.Python.Version3 (
-- * The parser
module Language.Python.Version3.Parser,
-- * The lexer
module Language.Python.Version3.Lexer
) where
import Language.Python.Version3.Parser
import Language.Python.Version3.Lexer