Ticket #1878: monitor-1878.patch
File monitor-1878.patch, 489 bytes (added by , 14 years ago) |
---|
-
trunk/twisted/web/monitor.py
5 5 from twisted.web import client 6 6 from twisted.internet import reactor 7 7 import md5 8 from zope.interface import implements 8 from zope.interface import implements, Interface 9 9 10 class IChangeNotified :10 class IChangeNotified(Interface): 11 11 pass 12 12 13 13 class BaseChangeNotified: