summaryrefslogtreecommitdiff
path: root/documentation3.py
diff options
context:
space:
mode:
authorMichele Simionato <michele.simionato@gmail.com>2011-04-11 09:58:43 +0200
committerMichele Simionato <michele.simionato@gmail.com>2011-04-11 09:58:43 +0200
commit4663c0ebf270687fa922f226d3847e6f82413df1 (patch)
treedb6640fbea876a3414b47277fe8336f95381f35a /documentation3.py
parent258acc07e0faf2691db298f4456aceef9b0c884d (diff)
downloadpython-decorator-git-4663c0ebf270687fa922f226d3847e6f82413df1.tar.gz
Fixed a doctest broken in Python 3.2
Diffstat (limited to 'documentation3.py')
-rw-r--r--documentation3.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation3.py b/documentation3.py
index c737267..d45d065 100644
--- a/documentation3.py
+++ b/documentation3.py
@@ -670,7 +670,7 @@ function is decorated the traceback will be longer:
.. code-block:: python
- >>> f()
+ >>> f() # doctest: +ELLIPSIS
Traceback (most recent call last):
...
File "<string>", line 2, in f
@@ -678,7 +678,7 @@ function is decorated the traceback will be longer:
return f(*args, **kw)
File "<doctest __main__[51]>", line 3, in f
1/0
- ZeroDivisionError: int division or modulo by zero
+ ZeroDivisionError: ...
You see here the inner call to the decorator ``trace``, which calls
``f(*args, **kw)``, and a reference to ``File "<string>", line 2, in f``.