Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kkristof200/kdecorators
https://github.com/kkristof200/kdecorators
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/kkristof200/kdecorators
- Owner: kkristof200
- License: mit
- Created: 2020-05-10T14:47:56.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-05-10T21:12:06.000Z (over 4 years ago)
- Last Synced: 2024-10-14T09:21:51.401Z (about 1 month ago)
- Language: Python
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# kdecorators
~~~~python
@no_raise
def func_that_does_not_raise():
return 1/1@suppress_raise
def func_that_would_raise_but_wont_because_of_the_decorator():
return 1/0@raises
def func_that_raises(i: int, j: int = 2):
return 1/0
~~~~