Type Constraints Decorator
Project description
Type Constraints Decorator.
Python decorator for adding function argument type constraint checks to function invocations.
Using the typeconstraints decorator allows you to defensively use asertions of argument types
and return value types of functions and methods.
The module allows the use of custom type constraint asertion classes and comes with a small set
of pre-defined type constaint asertion classes.
Basic usage:
from typeconstraints import typeconstraints,ARRAYOF
@typeconstraints([int,str,ARRAYOF(int)])
def simple_function(foo,bar,baz):
pass
simple_function(42,"hi there",[1,1,2,3,5,8,13,21])
For more information on usage, consult the tutorial here:
https://steemit.com/@mattockfs
Python decorator for adding function argument type constraint checks to function invocations.
Using the typeconstraints decorator allows you to defensively use asertions of argument types
and return value types of functions and methods.
The module allows the use of custom type constraint asertion classes and comes with a small set
of pre-defined type constaint asertion classes.
Basic usage:
from typeconstraints import typeconstraints,ARRAYOF
@typeconstraints([int,str,ARRAYOF(int)])
def simple_function(foo,bar,baz):
pass
simple_function(42,"hi there",[1,1,2,3,5,8,13,21])
For more information on usage, consult the tutorial here:
https://steemit.com/@mattockfs
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file typeconstraints-0.9.10.tar.gz.
File metadata
- Download URL: typeconstraints-0.9.10.tar.gz
- Upload date:
- Size: 6.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.10.0 pkginfo/1.2.1 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.19.5 CPython/3.6.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe847087ab08d153b1abc85a5fbaf83d548d02abce700fdadbdb8fd31af5a2d2
|
|
| MD5 |
3f38fb871b5dcc6279b0726a4e66a1e7
|
|
| BLAKE2b-256 |
e0fcb0e40f7b66048b845354f7148836b25f35e6e1939b8df6614690559b6a63
|