Skip to main content

Helper decorator to lock default mutable values

Project description

lock-defaults

PyPI License Copy and Paste

This decorator is small and only relies on the standard library, so can just be copied into a project.

Python has a weird behaviour around default values for functions. If you use an empty list as a default argument, things added to the list during the function can hang around for next time the function is called. A common pattern of dealing with this is the following:

def func(foo = None):
    if foo is None:
        foo = []

But this looks rubbish! And gets worse when you add typing:

def func(foo: list | None = None):
    if foo is None:
        foo = []

You don't need that workaround for any other of default value. Why does the list parameter have to pretend it can be None, when that's not the intention at all?

The lockmutabledefaults decorator fixes this by introducing what should be the default approach, and default values that are lists, dictionaries or sets are isolated in each re-run.

@lockmutabledefaults
def func(foo: list = []):
    pass

Install

You can install from pip: python -m pip install lock-defaults

Or you can copy the function directly into your projects.

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

lock-defaults-0.1.2.tar.gz (3.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

lock_defaults-0.1.2-py3-none-any.whl (5.8 kB view details)

Uploaded Python 3

File details

Details for the file lock-defaults-0.1.2.tar.gz.

File metadata

  • Download URL: lock-defaults-0.1.2.tar.gz
  • Upload date:
  • Size: 3.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.13 CPython/3.10.2 Linux/5.13.0-1025-azure

File hashes

Hashes for lock-defaults-0.1.2.tar.gz
Algorithm Hash digest
SHA256 fc397add8d5d6e34d20962e0695e4e288ad6c44914fe4ed5c980e2a72c541201
MD5 600f5392ae353f96ed2df1035098ab17
BLAKE2b-256 08369cb8b7ef44aa03319f3c62e814d3272dddc1fb1865e77ac196bbba65e200

See more details on using hashes here.

File details

Details for the file lock_defaults-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: lock_defaults-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 5.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.13 CPython/3.10.2 Linux/5.13.0-1025-azure

File hashes

Hashes for lock_defaults-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 e750a19ac0773fa3999d17be66ab3e7a0b12b503022c30cfb51c88bf16e66474
MD5 027051ba515c965ac972bad531b6828f
BLAKE2b-256 19a3b690d20d0e9d9cdf157860524d9cec736d67ce16fde00c419313ca580e64

See more details on using hashes here.

Supported by

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