summaryrefslogtreecommitdiff
path: root/examples/delimiters.py
blob: a132ed0fe56c92bc647789e166fd4a3d3a9ae2ec (plain)
1
2
3
4
5
6
7
8
9
10
class Delimiters(object):

    def first(self):
        return "It worked the first time."

    def second(self):
        return "And it worked the second time."

    def third(self):
        return "Then, surprisingly, it worked the third time."