Package jazzparser :: Package shell
[hide private]
[frames] | no frames]

Source Code for Package jazzparser.shell

 1  """The Jazz Parser's interactive shell for results analysis and debugging. 
 2   
 3  This package contains all of the basic infrastructure of the debugging  
 4  shell, including basic globally-applicable tools. Other tools are  
 5  loaded in per formalism and parser. 
 6   
 7  """ 
 8  """ 
 9  ============================== License ======================================== 
10   Copyright (C) 2008, 2010-12 University of Edinburgh, Mark Granroth-Wilding 
11    
12   This file is part of The Jazz Parser. 
13    
14   The Jazz Parser is free software: you can redistribute it and/or modify 
15   it under the terms of the GNU General Public License as published by 
16   the Free Software Foundation, either version 3 of the License, or 
17   (at your option) any later version. 
18    
19   The Jazz Parser is distributed in the hope that it will be useful, 
20   but WITHOUT ANY WARRANTY; without even the implied warranty of 
21   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
22   GNU General Public License for more details. 
23    
24   You should have received a copy of the GNU General Public License 
25   along with The Jazz Parser.  If not, see <http://www.gnu.org/licenses/>. 
26   
27  ============================ End license ====================================== 
28   
29  """ 
30  __author__ = "Mark Granroth-Wilding <mark.granroth-wilding@ed.ac.uk>"  
31   
32  from .shell import interactive_shell, ShellError, ShellState, restore_shell, \ 
33                                          empty_shell 
34