forked from bjpop/language-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVersion2.hs
More file actions
30 lines (28 loc) · 1.03 KB
/
Copy pathVersion2.hs
File metadata and controls
30 lines (28 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
-----------------------------------------------------------------------------
-- |
-- Module : Language.Python.Version2
-- 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 2.x of Python.
--
-- See:
--
-- * <http://docs.python.org/2.6/reference/index.html> for an overview of the language.
--
-- * <http://docs.python.org/2.6/reference/grammar.html> for the full grammar.
--
-- * <http://docs.python.org/2.6/reference/toplevel_components.html> for a description of
-- the various Python top-levels, which correspond to the parsers provided here.
-----------------------------------------------------------------------------
module Language.Python.Version2 (
-- * The parser
module Language.Python.Version2.Parser,
-- * The lexer
module Language.Python.Version2.Lexer
) where
import Language.Python.Version2.Parser
import Language.Python.Version2.Lexer