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.1.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.1-py3-none-any.whl (5.8 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: lock-defaults-0.1.1.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.1.tar.gz
Algorithm Hash digest
SHA256 747e648d604d5d437f9ee6385b321f2be0a11a400f03d519f68932ee8edc8de3
MD5 27a8b6a7dae835dbf7e1028ff6535795
BLAKE2b-256 aa7b5d80b677fb776e02a97348561ada3c0eee9d5f1236ffaa27e15c9e06dbb2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lock_defaults-0.1.1-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.1-py3-none-any.whl
Algorithm Hash digest
SHA256 2d4691a0f416a712159efb77d9b8317e3ae893107ec29cf5f4efa89f1b031abe
MD5 682d537d3611b483efe6e48369e1488b
BLAKE2b-256 b049d3b3fdd58b0eb455e157d67d6ceb5e1375bc2f2b14240f50c635a1349f81

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