summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Merge branch 'master' of github.com:micheles/decoratorMichele Simionato2019-01-242-12/+16
|\
| * Merge pull request #60 from sobolevn/feature-37-supportMichele Simionato2018-12-262-12/+16
| |\ | | | | | | Adds python3.7 support
| | * Adds python3.7 supportsobolevn2018-12-262-12/+16
| |/
* | Updated READMEMichele Simionato2019-01-241-0/+3
|/
* Added python_requires in setup.pyMichele Simionato2018-11-042-1/+3
|
* FixMichele Simionato2018-11-041-4/+4
|
* Added a test for decorating generatorsMichele Simionato2018-11-043-17/+36
|
* Merge pull request #57 from smarie/masterMichele Simionato2018-11-041-3/+29
|\ | | | | Improved `decorate` so as to support generator callers.
| * Fixed issue with coroutines in python 3.5: indeed unfortunately they appear ↵Sylvain Marie2018-10-261-1/+12
| | | | | | | | as generator functions in python 3.5.
| * Improved `decorate` so as to support generator callers. Fixes #56Sylvain Marie2018-10-261-3/+18
|/
* Bumped release to 4.3.14.3.1Michele Simionato2018-08-043-5/+7
|
* Fixed testMichele Simionato2018-08-041-1/+1
|
* Fixed testMichele Simionato2018-08-041-1/+1
|
* Support for Python 3.7Michele Simionato2018-08-046-24/+30
|
* Added the path to the decorator module in the virtual file pathMichele Simionato2018-07-272-2/+3
|
* Fixed CHANGES.mdMichele Simionato2018-07-251-1/+1
|
* Fixed references to docs/README.rstMichele Simionato2018-05-124-7/+4
|
* Moved the READMEMichele Simionato2018-05-122-90/+89
|
* Moved README to .rst formatMichele Simionato2018-05-122-0/+1
|
* Cleanup [skip CI]Michele Simionato2018-05-111-1/+1
|
* Added section "For the impatient"Michele Simionato2018-05-112-57/+92
|
* Merge branch 'master' of github.com:micheles/decoratorMichele Simionato2018-04-152-18/+5
|\
| * Fixed version number in the PDFMichele Simionato2018-04-152-18/+5
| |
* | Fixed copyright year [skip CI]Michele Simionato2018-04-151-1/+1
|/
* Fixed docs [skip CI]Michele Simionato2018-04-151-13/+2
|
* Updated docs [skip CI]4.3.0Michele Simionato2018-04-152-8/+8
|
* Updated docs [skip CI]Michele Simionato2018-04-151-0/+11
|
* Updated docs [skip CI]Michele Simionato2018-04-152-21/+38
|
* Updated docsMichele Simionato2018-04-154-39/+80
|
* Fixed decorator factories with positional argumentsMichele Simionato2018-04-153-8/+8
|
* Additional testMichele Simionato2018-04-151-14/+13
|
* PEP8 fixMichele Simionato2018-04-151-0/+1
|
* PEP8 fixMichele Simionato2018-04-151-1/+1
|
* Fix for Python 2Michele Simionato2018-04-151-2/+2
|
* Fixed testsMichele Simionato2018-04-152-15/+9
|
* Refined default argsMichele Simionato2018-03-252-23/+18
|
* Added a test_add1Michele Simionato2018-01-142-1/+12
|
* Fixed IPython issue4.2.1Michele Simionato2018-01-144-4/+15
|
* Pointing to latest, not to stableMichele Simionato2018-01-141-2/+2
|
* Small simplificationMichele Simionato2018-01-141-21/+16
|
* Merge branch '4.2.0'4.2.0Michele Simionato2018-01-144-72/+166
|\
| * Cleanup4.2.0Michele Simionato2018-01-143-29/+24
| |
| * Merge branch 'master' of github.com:micheles/decorator into 4.2.0Michele Simionato2018-01-141-1/+6
| |\
| * | Fixed Python 2.6Michele Simionato2018-01-141-2/+2
| | |
| * | Regenerated the docsMichele Simionato2018-01-141-21/+61
| | |
| * | Added a facility for decorator factoriesMichele Simionato2018-01-143-27/+86
| | |
* | | Merge branch 'master' of github.com:micheles/decoratorMichele Simionato2018-01-141-1/+6
|\ \ \ | |/ / |/| / | |/
| * Merge pull request #46 from ddaanet/masterMichele Simionato2018-01-141-1/+6
| |\ | | | | | | Enable pylint to support decorator.contextmanager
| | * Enable pylint to support decorator.contextmanagerDavid Allouche2018-01-101-1/+6
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Using decorator.contextmanager trigger the pylint error E1129 (not-context-manager). Pylint has a configuration option for this: # List of decorators that produce context managers, such as # contextlib.contextmanager. Add to this list to register other decorators that # produce valid context managers. contextmanager-decorators=contextlib.contextmanager,decorator.contextmanager But the current implementation of decorator.contextmanager prevents this from working. Changing contextmanager to be a simple function fixes the issue.
* | Merge branch 'master' of github.com:micheles/decoratorMichele Simionato2018-01-141-0/+9
|\ \ | |/