--- a/cwvreg.py Tue Apr 07 19:55:38 2009 +0200
+++ b/cwvreg.py Wed Apr 08 11:29:28 2009 +0200
@@ -140,6 +140,13 @@
# clear needs_iface so we don't try to remove some not-anymore-in
# objects on automatic reloading
self._needs_iface.clear()
+ # print registry content
+ for registry, objects in self.items():
+ self.debug('available in registry %s: %s', registry,
+ sorted(objects))
+ for appobjects in objects.itervalues():
+ for appobject in appobjects:
+ appobject.vreg_initialization_completed()
@cached
def etype_class(self, etype):