Commit f9816176 authored by Fred Drake's avatar Fred Drake

"level" keyword argument in example should be "stacklevel".

This closes SF bug #517684.
parent 57fd45ea
......@@ -153,7 +153,7 @@ this:
\begin{verbatim}
def deprecation(message):
warnings.warn(message, DeprecationWarning, level=2)
warnings.warn(message, DeprecationWarning, stacklevel=2)
\end{verbatim}
This makes the warning refer to \function{deprecation()}'s caller,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment