reference-query 0.39.0

Reference Query — find the code you're looking for.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""Fixture: a small, domain-neutral Python file exercising class, method, and
free-function extraction."""


class Account:
    def deposit(self, amount):
        return amount

    def withdraw(self, amount):
        return amount


def build_account():
    return Account()