MCPcopy Create free account
hub / github.com/ActiveState/code / Observer1

Class Observer1

recipes/Python/578484_Observer_Pattern/recipe-578484.py:43–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

41 Subject.__init__(self, excluded)
42
43class Observer1:
44 def update(self, subject, attrname, value):
45 print 'Observer1: Subject %s has updated attr %s to %s' % (subject.name, attrname, value)
46
47class Observer2:
48 def update(self, subject, attrname, value):

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected