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
25c99f03
Commit
25c99f03
authored
Jan 05, 2002
by
Fred Drake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not mask the name of a built-in function in example code.
Based on comment sent to python-docs.
parent
908e4382
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
Doc/lib/libsys.tex
Doc/lib/libsys.tex
+1
-1
No files found.
Doc/lib/libsys.tex
View file @
25c99f03
...
...
@@ -105,7 +105,7 @@ It is always available.
by a local variable in the same function or by the traceback from
being garbage collected. Since most functions don't need access to
the traceback, the best solution is to use something like
\code
{
type, value = sys.exc
_
info()[:2]
}
to extract only the
\code
{
exc
type, value = sys.exc
_
info()[:2]
}
to extract only the
exception type and value. If you do need the traceback, make sure
to delete it after use (best done with a
\keyword
{
try
}
...
\keyword
{
finally
}
statement) or to call
\function
{
exc
_
info()
}
in
...
...
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