Skip to main content

Python decorators for including/excluding type checks, value/bounds checks, and other code blocks within the compiled bytecode of functions and methods.

Project description

Python decorators for including/excluding type checks, value/bounds checks, and other code blocks within the compiled bytecode of functions and methods.

PyPI version and link. Read the Docs documentation status. GitHub Actions status. Coveralls test coverage summary.

Installation and Usage

This library is available as a package on PyPI:

python -m pip install barriers

The library can be imported in the usual manner:

import barriers
from barriers import barriers

Examples

Consider the function below (defined within a file f.py). The body of this function contains a code block that raises an exception if either of the two inputs is a negative integer:

def f(x: int, y: int) -> int:

    if x < 0 or y < 0:
        raise ValueError('inputs must be nonnegative')

    return x + y

We can import the module above and invoke the function to observe its behavior:

>>> from f import f
>>> f(1, 2)
3
>>> f(-1, -2)
Traceback (most recent call last):
  ...
ValueError: inputs must be nonnegative

An instance of the barriers class should normally be introduced near the top of a Python module using a pair of statements such as those below:

>>> from barriers import barriers
>>> example = barriers(False) @ globals() # Remove marked code blocks (i.e., "disable barriers").

The barriers instance example defined above is a decorator that transforms any decorated function by removing any designated code blocks in the body of that function.

  • The False argument in the expression barriers(False) above should be interpreted to mean that this barrier is disabled (i.e., that the marked code blocks in the bodies of functions decorated by this decorator should be removed). The default value for this optional argument is True; this should be interpreted to mean that this barrier is enabled (and, thus, that marked code blocks should not be removed from decorated functions).

  • The notation @ globals() ensures that the namespace returned by globals is used when compiling the abstract syntax trees of transformed functions.

Consider the modified version of f.py below. A statement can be designated for automatic removal by placing a marker – in this case, the example variable – on the line directly above that statement. Note that in the body of the function f defined below, the if block is immediately preceded by a line that contains the variable example:

from barriers import barriers
example = barriers(False) @ globals()

@example
def f(x: int, y: int) -> int:

    example
    if x < 0 or y < 0:
        raise ValueError('inputs must be nonnegative')

    return x + y

The decorator @example automatically removes the if block in the function above. As a result, the function does not raise an exception when it is applied to negative inputs:

>>> from f import f
>>> f(1, 2)
3
>>> f(-1, -2)
-3

It is also possible to define and use individually named markers (which are created as attributes of the barriers instance):

>>> from barriers import barriers
>>> checks = barriers(types=True, bounds=False) @ globals()

Given the above definitions, it is possible to introduce named markers such as those in the variant of f.py presented below. When a marker definition has been assigned True, the statements immediately below that named marker are not removed (i.e., the marked barrier statements are enabled). When a marker definition has been assigned False, the corresponding marked statements are removed:

from barriers import barriers
checks = barriers(types=True, bounds=False) @ globals()

@checks
def f(x: int, y: int) -> int:

    checks.types
    if not isinstance(x, int) and not isinstance(y, int):
        raise TypeError('inputs must be integers')

    checks.bounds
    if x < 0 or y < 0:
        raise ValueError('inputs must be nonnegative')

    return x + y

The described behavior can be observed when evaluating the function:

>>> from f import f
>>> f('a', 'b')
Traceback (most recent call last):
  ...
TypeError: inputs must be integers
>>> f(-1, -2)
-3

Many additional details and examples are presented in the documentation.

Development

All installation and development dependencies are fully specified in pyproject.toml. The project.optional-dependencies object is used to specify optional requirements for various development tasks. This makes it possible to specify additional options (such as docs, lint, and so on) when performing installation using pip:

python -m pip install ".[docs,lint]"

Documentation

The documentation can be generated automatically from the source files using Sphinx:

python -m pip install ".[docs]"
cd docs
sphinx-apidoc -f -E --templatedir=_templates -o _source .. && make html

Testing and Conventions

All unit tests are executed and their coverage is measured when using pytest (see the pyproject.toml file for configuration details):

python -m pip install ".[test]"
python -m pytest

Alternatively, all unit tests are included in the module itself and can be executed using doctest:

python src/barriers/barriers.py -v

Style conventions are enforced using Pylint:

python -m pip install ".[lint]"
python -m pylint src/barriers

Contributions

In order to contribute to the source code, open an issue or submit a pull request on the GitHub page for this library.

Versioning

The version number format for this library and the changes to the library associated with version number increments conform with Semantic Versioning 2.0.0.

Publishing

This library can be published as a package on PyPI via the GitHub Actions workflow found in .github/workflows/build-publish-sign-release.yml that follows the recommendations found in the Python Packaging User Guide.

Ensure that the correct version number appears in pyproject.toml, and that any links in this README document to the Read the Docs documentation of this package (or its dependencies) have appropriate version numbers. Also ensure that the Read the Docs project for this library has an automation rule that activates and sets as the default all tagged versions.

To publish the package, create and push a tag for the version being published (replacing ?.?.? with the version number):

git tag ?.?.?
git push origin ?.?.?

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

barriers-2.0.0.tar.gz (11.3 kB view details)

Uploaded Source

Built Distribution

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

barriers-2.0.0-py3-none-any.whl (9.9 kB view details)

Uploaded Python 3

File details

Details for the file barriers-2.0.0.tar.gz.

File metadata

  • Download URL: barriers-2.0.0.tar.gz
  • Upload date:
  • Size: 11.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for barriers-2.0.0.tar.gz
Algorithm Hash digest
SHA256 a411df7fd4153ba50d111ac7e93d6536d3ce88b3cbd723f2a85aa08d0c80c8b7
MD5 688daec9fa5d099c77d60124512a7281
BLAKE2b-256 fd33d01341a76c8f3a76cd0bf7bcd49b7f647f265143dd0553bb359203f00e0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for barriers-2.0.0.tar.gz:

Publisher: build-publish-sign-release.yml on reity/barriers

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barriers-2.0.0-py3-none-any.whl.

File metadata

  • Download URL: barriers-2.0.0-py3-none-any.whl
  • Upload date:
  • Size: 9.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for barriers-2.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 16d408b6109efdd41312dec101dde706d5513305d5f14a9c031c8911eb6e8981
MD5 66ecfa7e669229595d06e14fd2638091
BLAKE2b-256 8c0b94cb16245bcbb0e4a2b5be00c4e144eb65ac98670460d70009f0f47f9dce

See more details on using hashes here.

Provenance

The following attestation bundles were made for barriers-2.0.0-py3-none-any.whl:

Publisher: build-publish-sign-release.yml on reity/barriers

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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