Files
codeql/python/ql/test/library-tests/web/zope/test.py
2019-12-02 14:38:03 +01:00

15 lines
165 B
Python

from zope.interface import Interface, implementer
class IThing(Interface):
pass
@implementer(IThing)
class Thing(object):
pass
implementer
IThing
Thing