summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
| * 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.
* | Fixed Python 2.6Michele Simionato2018-01-141-2/+2
| |
* | Added a facility for decorator factoriesMichele Simionato2018-01-142-27/+81
|/
* Updated the docsMichele Simionato2017-07-233-6/+29
|
* Now the coroutine signature is determined by the callerMichele Simionato2017-07-232-4/+4
|
* Doc fixrelease-4.1.1Michele Simionato2017-07-161-2/+2
|
* Small fix [skip CI]Michele Simionato2017-07-151-1/+1
|
* Fixed docsMichele Simionato2017-07-151-1/+0
|
* Removed the .pdf from the repoMichele Simionato2017-07-151-1/+1
|
* Generating the documentation for ReadTheDocsMichele Simionato2017-07-151-4/+3
|
* Work on branch 4.1.04.1.0Michele Simionato2017-07-152-3/+63
|
* Fixed bug in the decoration of coroutinesMichele Simionato2017-06-062-13/+19
|
* Preserving iscoroutinefunction for Python 3.5 coroutinesMichele Simionato2017-06-032-2/+27
|
* Fixed an import error breaking Python 3.64.0.11Michele Simionato2017-01-151-1/+1
|
* Fixed Python 2 issueMichele Simionato2017-01-151-1/+1
|
* Tested with Python 3.6Michele Simionato2017-01-152-41/+47
|
* Merge pull request #38 from stepshal/misspellingsMichele Simionato2016-10-081-3/+3
|\ | | | | Fix misspellings
| * Fix misspellingsstepshal2016-10-081-3/+3
| |
* | Add blank lines after code object, class of function definition.stepshal2016-10-083-0/+8
|/
* Remove trailing whitespace.stepshal2016-10-081-28/+28
|
* Fix a typo in the documentationAndreas Pelme2016-10-071-1/+1
|
* Merge branch 'master' of github.com:micheles/decoratorMichele Simionato2016-06-071-1/+1
|\
| * Fix minor typo in the docPhilippe Ombredanne2016-05-081-1/+1
| |
* | Refined the documentationMichele Simionato2016-02-112-69/+74
|/
* Some fixes to the documentation and the CSSMichele Simionato2016-02-112-117/+121
|
* Minor edits (formatting, phrasing, and clarity)Zearin2016-02-091-360/+417
|
* Bumped release number to 4.0.94.0.9Michele Simionato2016-02-081-1/+1
|
* Fixed the documentation4.0.7Michele Simionato2016-02-061-0/+1
|
* Made release 4.0.7Michele Simionato2016-02-061-2/+5
|
* Removed file x.py accidentally entered in the tarballMichele Simionato2015-12-111-1/+1
|
* Fixed code-block::Michele Simionato2015-12-091-2/+2
|
* Added a doctest: +ELLIPSIS to fix old Python versionsMichele Simionato2015-12-092-5/+6
|
* Documented the quirk when decorating functions with keyword argumentsMichele Simionato2015-12-093-7/+56
|
* Some cleanupMichele Simionato2015-12-091-3/+0
|
* Avoided copying the globalsMichele Simionato2015-12-091-6/+2
|
* Small renamingMichele Simionato2015-11-021-1/+1
|
* "f" is no more a special nameMichele Simionato2015-11-021-7/+3
|
* Removed an unused argumentMichele Simionato2015-10-041-1/+1
|
* Fixed misprint in the docsMichele Simionato2015-10-041-1/+1
|
* Bumped version to 4.0.44.0.4Michele Simionato2015-09-251-1/+1
|
* Merge pull request #15 from zbenjamin/masterMichele Simionato2015-09-252-2/+38
|\ | | | | Ensure each generated function has a unique filename
| * Ensure each generated function has a unique filenameZev Benjamin2015-09-242-2/+38
| | | | | | | | | | | | Some profilers (such as cProfile) depend on the tuple of (<filename>, <definition line>, <function name>) being unique. If the filenames of generated functions are all the same, such profilers can produce incorrect profiles.
* | Added a docstring to the memoize example4.0.3Michele Simionato2015-09-252-1/+6
| |
* | Fixed the docsMichele Simionato2015-09-211-1/+4
|/
* Fixed MANIFEST.in4.0.2Michele Simionato2015-07-281-1/+1
|
* Bumped the release number to 4.0.14.0.1Michele Simionato2015-07-281-1/+1
|
* __qualname__ should be added only for Python >= 3.3Michele Simionato2015-07-282-8/+8
|
* Fixed bug with __qualname__Michele Simionato2015-07-283-6/+14
|
* Improvements to the docsMichele Simionato2015-07-241-43/+54
|
* Introduced dispatch_infoMichele Simionato2015-07-243-46/+102
|