summaryrefslogtreecommitdiff
path: root/documentation.py
diff options
context:
space:
mode:
authorMichele Simionato <michele.simionato@gmail.com>2015-03-16 15:26:20 +0100
committerMichele Simionato <michele.simionato@gmail.com>2015-03-16 15:26:20 +0100
commitcbc46b5c31e82cdf06336f8aa96527bb0b33dfd2 (patch)
treee558d7fed5459692e19db548e7fc18c20a047788 /documentation.py
parent6f3bf75e285f6632d5be0201d090ea158f18ad7c (diff)
downloadpython-decorator-git-cbc46b5c31e82cdf06336f8aa96527bb0b33dfd2.tar.gz
Added a script test.py working both with Python 2 and 3
Diffstat (limited to 'documentation.py')
-rw-r--r--documentation.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/documentation.py b/documentation.py
index 0aab054..4825fa8 100644
--- a/documentation.py
+++ b/documentation.py
@@ -1043,7 +1043,7 @@ class Action(object):
"""
>>> a = Action()
>>> a.view() # ok
- >>> a.insert() # err
+ >>> a.insert() # doctest: +IGNORE_EXCEPTION_DETAIL
Traceback (most recent call last):
...
PermissionError: User does not have the permission to run insert!
@@ -1146,8 +1146,3 @@ def hello(user):
AFTER
"""
print('hello %s' % user)
-
-if __name__ == '__main__':
- import doctest
- err = doctest.testmod()[0]
- sys.exit(err)