# HG changeset patch # User Paul Boddie # Date 1477687855 -7200 # Node ID c76cd2c62601f5b3e8de4e02afbaa9278c12fb9d # Parent 45dfa7227ebc1ea8001ae30be3c577ad05c28381 Do not short-circuit dependency registration for built-in names, even if they have already been made available by another module. diff -r 45dfa7227ebc -r c76cd2c62601 inspector.py --- a/inspector.py Fri Oct 28 14:06:54 2016 +0200 +++ b/inspector.py Fri Oct 28 22:50:55 2016 +0200 @@ -145,9 +145,9 @@ self.set_name_reference(key, ref) continue - # Find global or known built-in definitions. + # Find global. - ref = self.get_resolved_global_or_builtin(name) + ref = self.get_global(name) if ref: self.set_name_reference(key, ref) continue