Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix codespell errors | Hugo van Kemenade | 2022-11-05 | 1 | -1/+1 |
| | |||||
* | Update download links | Hugo van Kemenade | 2022-11-05 | 1 | -1/+1 |
| | |||||
* | Add support for Python 3.11 | Hugo van Kemenade | 2022-11-05 | 1 | -1/+1 |
| | |||||
* | Fixed implementation of decorator_apply | Michele Simionato | 2022-01-07 | 1 | -1/+1 |
| | |||||
* | Add support for Python 3.10 | Hugo van Kemenade | 2021-10-11 | 1 | -1/+1 |
| | |||||
* | Fixed misprint in the docs | Michele Simionato | 2021-09-11 | 1 | -1/+1 |
| | |||||
* | Added decoratorx and bumped version to 5.1.0 | Michele Simionato | 2021-09-11 | 1 | -0/+34 |
| | |||||
* | Removed unused import | Michele Simionato | 2021-09-11 | 1 | -1/+0 |
| | |||||
* | Fixed some sphinx warnings | Michele Simionato | 2021-09-11 | 1 | -105/+76 |
| | |||||
* | Fixed bug in decorator.contextmanager | Michele Simionato | 2021-08-20 | 1 | -2/+2 |
| | |||||
* | Fixed doctest breaking in Python 3.55.0.7 | Michele Simionato | 2021-04-11 | 1 | -4/+4 |
| | |||||
* | Fixed a few mispellings | Michele Simionato | 2021-04-10 | 1 | -3/+3 |
| | |||||
* | func.__module__ was not copied anymore | Michele Simionato | 2021-04-08 | 1 | -4/+3 |
| | |||||
* | Doc fix | Michele Simionato | 2021-04-04 | 1 | -1/+1 |
| | |||||
* | Added another test5.0.5 | Michele Simionato | 2021-04-04 | 1 | -10/+24 |
| | |||||
* | Restored old semantic and added kwsyntax flag | Michele Simionato | 2021-04-04 | 1 | -56/+61 |
| | |||||
* | Fixed func.__doc__ not being copied | Michele Simionato | 2021-04-03 | 1 | -1/+3 |
| | |||||
* | Markdown fix | Michele Simionato | 2021-04-03 | 1 | -0/+6 |
| | |||||
* | Documented incompatibility with previous versions | Michele Simionato | 2021-04-03 | 1 | -38/+87 |
| | |||||
* | Doc fix | Michele Simionato | 2021-04-02 | 1 | -1/+1 |
| | |||||
* | Fixed test5.0.0 | Michele Simionato | 2021-04-02 | 1 | -0/+1 |
| | |||||
* | Updated the docs | Michele Simionato | 2021-04-02 | 1 | -2/+2 |
| | |||||
* | Doc fix | Michele Simionato | 2021-04-02 | 1 | -2/+2 |
| | |||||
* | Doc fix | Michele Simionato | 2021-04-02 | 1 | -2/+2 |
| | |||||
* | Update version to 5.0.0 and updated the docs | Michele Simionato | 2021-04-02 | 1 | -126/+56 |
| | |||||
* | Improved the test and the docs on the contextmanager | Michele Simionato | 2021-03-31 | 1 | -46/+13 |
| | |||||
* | Not using the FunctionMaker in ContextManager | Michele Simionato | 2021-03-31 | 1 | -13/+0 |
| | |||||
* | Doc fixes | Michele Simionato | 2021-03-31 | 1 | -22/+19 |
| | |||||
* | Fixed __kwdefaults__ | Michele Simionato | 2021-03-31 | 1 | -33/+39 |
| | |||||
* | Removed support for old Python versions | Michele Simionato | 2021-03-31 | 1 | -1/+1 |
| | |||||
* | Merge branch 'master' of github.com:micheles/decorator into 4.5 | Michele Simionato | 2021-03-31 | 1 | -15/+12 |
|\ | |||||
| * | Removed obsolete reference to readthedocs | Michele Simionato | 2020-07-27 | 1 | -1/+1 |
| | | |||||
| * | Improved a bit the documentation | Michele Simionato | 2020-07-27 | 1 | -15/+12 |
| | | |||||
* | | Initial work for decorator 4.5 | Michele Simionato | 2020-03-15 | 1 | -27/+10 |
|/ | |||||
* | Added a test about changing the signature | Michele Simionato | 2020-03-15 | 1 | -1/+47 |
| | |||||
* | Fixed "operation is slow" tests | Michele Simionato | 2020-02-29 | 1 | -1/+3 |
| | |||||
* | Don't use strictly larger for warn_slow test | Silvan Mosberger | 2020-02-18 | 1 | -1/+1 |
| | | | | | In certain circumstances the time difference can be 0, which previously causes the test to fail, e.g. https://github.com/NixOS/nixpkgs/issues/75554 | ||||
* | Fix: sys.version compared to string (python10), use sys.version_info | Hugo | 2020-01-08 | 1 | -2/+2 |
| | |||||
* | On Python 3.9, we cannot longer avoid using collections.abc | Miro Hrončok | 2020-01-05 | 1 | -19/+21 |
| | | | | Related to https://github.com/micheles/decorator/issues/75#issuecomment-570827328 | ||||
* | Python 3.9 compatibility | Miro Hrončok | 2020-01-04 | 1 | -1/+1 |
| | | | | | | | | | | | | | | Thread.isAlive() is deprecated in 3.8 and removed in 3.9: $ python3.8 -c 'import threading; t = threading.Thread(); t.isAlive()' <string>:1: DeprecationWarning: isAlive() is deprecated, use is_alive() instead $ python3.9 -c 'import threading; t = threading.Thread(); t.isAlive()' Traceback (most recent call last): File "<string>", line 1, in <module> AttributeError: 'Thread' object has no attribute 'isAlive' Fixes https://github.com/micheles/decorator/issues/75 | ||||
* | Changed description to Decorators for Humans | Michele Simionato | 2019-10-27 | 1 | -2/+2 |
| | |||||
* | docs: Create ba decorator | Panos Mavrogiorgos | 2019-04-22 | 1 | -0/+2 |
| | |||||
* | Small change to the docs suggested by https://github.com/yjqiang | Michele Simionato | 2019-04-10 | 1 | -2/+2 |
| | |||||
* | Fixed the copyright year4.4.0 | Michele Simionato | 2019-03-16 | 1 | -1/+1 |
| | |||||
* | Doc fixes | Michele Simionato | 2019-03-16 | 1 | -11/+15 |
| | |||||
* | Fixed docs | Michele Simionato | 2019-03-16 | 1 | -1/+1 |
| | |||||
* | Reverted the decorator factory sintax to v4.2 and bumped the release to 4.4 | Michele Simionato | 2019-03-16 | 1 | -8/+25 |
| | |||||
* | Converted the docs from .rst to .md | Michele Simionato | 2019-03-16 | 1 | -355/+384 |
| | |||||
* | Added a test | Michele Simionato | 2019-03-15 | 1 | -0/+18 |
| | |||||
* | Support for Python 3.7 | Michele Simionato | 2018-08-04 | 1 | -11/+13 |
| |