summaryrefslogtreecommitdiff
path: root/doc/data/messages/p/property-with-parameters/good.py
blob: af6a4fb56a50debc18bf4afc3aa49cd44599faa7 (plain)
1
2
3
4
5
6
7
8
9
class Worm:
    @property
    def bore(self):
        """Property accessed with '.bore'."""
        pass

    def bore_with_depth(depth):
        """Function called with .bore_with_depth(depth)."""
        pass