1.1 --- a/micropython/__init__.py Sat Feb 09 19:37:38 2008 +0100
1.2 +++ b/micropython/__init__.py Sun Feb 10 21:20:38 2008 +0100
1.3 @@ -5,7 +5,7 @@
1.4 from the simplify package but has had various details related to that package
1.5 removed.
1.6
1.7 -Copyright (C) 2006, 2007 Paul Boddie <paul@boddie.org.uk>
1.8 +Copyright (C) 2006, 2007, 2008 Paul Boddie <paul@boddie.org.uk>
1.9
1.10 This program is free software; you can redistribute it and/or modify it under
1.11 the terms of the GNU General Public License as published by the Free Software
1.12 @@ -33,6 +33,7 @@
1.13 functionality of the micropython package may be accessed.
1.14 """
1.15
1.16 +from micropython.common import *
1.17 import micropython.ast
1.18 import micropython.inspect
1.19 import micropython.table
1.20 @@ -42,11 +43,12 @@
1.21 except NameError:
1.22 from sets import Set as set
1.23
1.24 -InspectError = micropython.inspect.InspectError
1.25 -
1.26 class Importer:
1.27
1.28 - "An import machine, searching for and loading modules."
1.29 + """
1.30 + An import machine, searching for and loading modules. In addition, this
1.31 + class supports the generation of a program image.
1.32 + """
1.33
1.34 def __init__(self, path=None, verbose=0):
1.35