aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/Twisted-12.2.0-py2.7-linux-x86_64.egg/twisted/test/crash_test_dummy.py
blob: 5a30bd40d4872651adeb5cc4510bc8e0e7620c37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Copyright (c) Twisted Matrix Laboratories.
# See LICENSE for details.


from twisted.python import components
from zope.interface import implements, Interface

def foo():
    return 2

class X:
    def __init__(self, x):
        self.x = x

    def do(self):
        #print 'X',self.x,'doing!'
        pass


class XComponent(components.Componentized):
    pass

class IX(Interface):
    pass

class XA(components.Adapter):
    implements(IX)

    def method(self):
        # Kick start :(
        pass

components.registerAdapter(XA, X, IX)