Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
10f08f95
Commit
10f08f95
authored
Jun 12, 2010
by
Nick Coghlan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Backport a fix from Py3k for a potentially misleading example
parent
f084aed3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
Doc/library/doctest.rst
Doc/library/doctest.rst
+4
-4
No files found.
Doc/library/doctest.rst
View file @
10f08f95
...
@@ -576,13 +576,13 @@ doctest decides whether actual output matches an example's expected output:
...
@@ -576,13 +576,13 @@ doctest decides whether actual output matches an example's expected output:
both
these
variations
will
work
regardless
of
whether
the
test
is
run
under
both
these
variations
will
work
regardless
of
whether
the
test
is
run
under
Python
2.7
or
Python
3.2
(
or
later
versions
):
Python
2.7
or
Python
3.2
(
or
later
versions
):
>>>
raise
Value
Error
(
'message'
)
#
doctest
:
+
IGNORE_EXCEPTION_DETAIL
>>>
raise
Custom
Error
(
'message'
)
#
doctest
:
+
IGNORE_EXCEPTION_DETAIL
Traceback
(
most
recent
call
last
):
Traceback
(
most
recent
call
last
):
Value
Error
:
message
Custom
Error
:
message
>>>
raise
Value
Error
(
'message'
)
#
doctest
:
+
IGNORE_EXCEPTION_DETAIL
>>>
raise
Custom
Error
(
'message'
)
#
doctest
:
+
IGNORE_EXCEPTION_DETAIL
Traceback
(
most
recent
call
last
):
Traceback
(
most
recent
call
last
):
builtin
.
Value
Error
:
message
my_module
.
Custom
Error
:
message
Note
that
:
const
:`
ELLIPSIS
`
can
also
be
used
to
ignore
the
Note
that
:
const
:`
ELLIPSIS
`
can
also
be
used
to
ignore
the
details
of
the
exception
message
,
but
such
a
test
may
still
fail
based
details
of
the
exception
message
,
but
such
a
test
may
still
fail
based
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment