summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMichele Simionato <michele.simionato@gmail.com>2019-03-18 08:22:29 +0100
committerMichele Simionato <michele.simionato@gmail.com>2019-03-18 08:22:29 +0100
commitdfa9811f21b1fb81aa595384fcb3e58fc6f6805f (patch)
treee25a89b9eadcabb905be0ea529b4d6e2a726e66b /docs
parentd03ac47fd475c167534f99d4194229b05b70f616 (diff)
downloadpython-decorator-git-arg.tar.gz
Fixed testarg
Diffstat (limited to 'docs')
-rw-r--r--docs/documentation.md9
1 files changed, 0 insertions, 9 deletions
diff --git a/docs/documentation.md b/docs/documentation.md
index f9fb43c..9bfe5b6 100644
--- a/docs/documentation.md
+++ b/docs/documentation.md
@@ -602,15 +602,6 @@ where ``restricted`` is a decorator factory defined as follows
% (self.user, func.__name__))
```
-By passing arguments to the decorator factory one gets Decorator objects
-which are callables taking in input a function:
-
-```python
->>> restricted(User)
-<Decorator restricted(<class '__main__.User'>,)>
-
-```
-
``decorator(cls)``
--------------------------------------------