# HG changeset patch # User Paul Boddie # Date 1307048897 -7200 # Node ID 9cc18edd5d884292fb32bd874aa99241e1f7487c # Parent 58a51f45c389165d8be1bdcfbeea4943dd5edf86 Fixed mispositioned code leading to severe coverage issues. diff -r 58a51f45c389 -r 9cc18edd5d88 micropython/__init__.py --- a/micropython/__init__.py Sat May 21 19:00:05 2011 +0200 +++ b/micropython/__init__.py Thu Jun 02 23:08:17 2011 +0200 @@ -631,7 +631,8 @@ user._attrtypes = {} user._attrtypes[name] = all_objtypes - self._collect_attributes_for_types(from_name, objtable, all_objtypes, usage) + + self._collect_attributes_for_types(from_name, objtable, all_objtypes, usage) # Get specific name references and visit the referenced objects.