Skip to main content

Allows for mutable defaults comfortably and intuitively.

Project description

Introduction

stabledefaults is a small package containing a decorator to allow for the expected behavior of lists, dicts and other mutable arguments in default arguments.

Explanation

In Python, functions (as anything else) are objects, and the default arguments are stored as attributes that are initialized in definition.

Once this is known and the person understands that variables are references in Python, then it is relatively straightforward to understand the following behavior:

def f(x=[]):
    x.append(2)
    return x
>>> a = f()
>>> a
[2]
>>> f()
>>> a
[2, 2]

Nevertheless, this is unintuitive. Not only that, but dealing with this requires things such as

def f(x = None):
    if x is None:
        x = []

    x.append(2)
    return x

which forces types such as list | None where just list should suffice, and also forces code inside the function itself.

This package solves this issue with a decorator. For instance, the example above would become

@stabledefaults()
def f(x=[]):
    x.append(2)
    return x
>>> a = f()
>>> a
[2]
>>> f()
>>> a
[2]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

stabledefaults-0.1.4.tar.gz (3.0 kB view hashes)

Uploaded Source

Built Distribution

stabledefaults-0.1.4-py3-none-any.whl (3.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page