summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2002-08-27 23:53:23 (GMT)
committerRaymond Hettinger <python@rcn.com>2002-08-27 23:53:23 (GMT)
commit9240be2a357260ed7910b0b666140abd4e7395e2 (patch)
tree9e90881362dd1df8aa5e5b3fb71aec7e32a747a4 /Doc
parent1a1607546ca5d56152d66321952afd2c46e7d92f (diff)
downloadcpython-9240be2a357260ed7910b0b666140abd4e7395e2.zip
cpython-9240be2a357260ed7910b0b666140abd4e7395e2.tar.gz
cpython-9240be2a357260ed7910b0b666140abd4e7395e2.tar.bz2
Note change in behavior from 1.5.2. The new argument to NameError is
an error message and not just the missing name. Closes SF Bug 599869.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/lib/libexcs.tex4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/lib/libexcs.tex b/Doc/lib/libexcs.tex
index 86b5281..078fe3c 100644
--- a/Doc/lib/libexcs.tex
+++ b/Doc/lib/libexcs.tex
@@ -206,8 +206,8 @@ Raised when an \keyword{assert} statement fails.
\begin{excdesc}{NameError}
Raised when a local or global name is not found. This applies only
- to unqualified names. The associated value is the name that could
- not be found.
+ to unqualified names. The associated value is an error message that
+ includes the name that could not be found.
\end{excdesc}
\begin{excdesc}{NotImplementedError}