# HG changeset patch # User Paul Boddie # Date 1335913318 -7200 # Node ID ed94ff8a2e78b2b2e4df8f3472dbe80814f17a37 # Parent f7c5c829701e3b7e082e89730d0476038f5a20a3 Introduced user finalisation for all namespaces, not just functions. diff -r f7c5c829701e -r ed94ff8a2e78 micropython/data.py --- a/micropython/data.py Tue May 01 01:46:59 2012 +0200 +++ b/micropython/data.py Wed May 02 01:01:58 2012 +0200 @@ -145,6 +145,7 @@ def finalise(self, objtable): self.finalise_attributes() + self.finalise_users(objtable) def items_for_vacuum(self): return self.items() + self.lambdas.items() @@ -1859,10 +1860,6 @@ # Administrative methods. - def finalise(self, objtable): - self.finalise_attributes() - self.finalise_users(objtable) - def items_for_vacuum(self): return self.lambdas.items()