# HG changeset patch # User Paul Boddie # Date 1265486428 -3600 # Node ID ab4dcd04e98d5a71ccab60ac665eb93232d7b8ae # Parent 2d4f70fd52dd62e718a5626c15106d6cb1057cbc Made InspectError a subclass of NodeProcessingError. diff -r 2d4f70fd52dd -r ab4dcd04e98d docs/COPYING.txt --- a/docs/COPYING.txt Sun Nov 29 01:51:09 2009 +0100 +++ b/docs/COPYING.txt Sat Feb 06 21:00:28 2010 +0100 @@ -1,7 +1,7 @@ Licence Agreement for micropython --------------------------------- -Copyright (C) 2006, 2007, 2008, 2009 Paul Boddie +Copyright (C) 2006, 2007, 2008, 2009, 2010 Paul Boddie This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software diff -r 2d4f70fd52dd -r ab4dcd04e98d micropython/common.py --- a/micropython/common.py Sun Nov 29 01:51:09 2009 +0100 +++ b/micropython/common.py Sat Feb 06 21:00:28 2010 +0100 @@ -3,7 +3,7 @@ """ Common classes. -Copyright (C) 2007, 2008, 2009 Paul Boddie +Copyright (C) 2007, 2008, 2009, 2010 Paul Boddie This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software @@ -32,12 +32,6 @@ pass -class InspectError(ProcessingError): - - "An error during the module inspection process." - - pass - class TableError(ProcessingError): "An error occurring during access to a lookup table." @@ -65,6 +59,12 @@ def __str__(self): return repr(self) +class InspectError(NodeProcessingError): + + "An error during the module inspection process." + + pass + class TranslateError(NodeProcessingError): "An error during the module translation process."