summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/tests/documentation.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tests/documentation.py b/src/tests/documentation.py
index 56c0e19..6a77614 100644
--- a/src/tests/documentation.py
+++ b/src/tests/documentation.py
@@ -547,6 +547,8 @@ In Python 3.2, ``GeneratorContextManager`` objects were enhanced with
a ``__call__`` method, so that they can be used as decorators, like so:
```python
+>>> ba = before_after('BEFORE', 'AFTER')
+>>>
>>> @ba # doctest: +SKIP
... def hello():
... print('hello')