diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2001-12-03 20:58:29 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2001-12-03 20:58:29 (GMT) |
commit | c54fc3179fd95fc0807de602f5bb6efb0bebf942 (patch) | |
tree | 92541b12c03b29a337cbbb523d87a3f9c41aadfb /Doc | |
parent | 9455df2a5a628d9ca3578624df6e82f6d7404c1e (diff) | |
download | cpython-c54fc3179fd95fc0807de602f5bb6efb0bebf942.zip cpython-c54fc3179fd95fc0807de602f5bb6efb0bebf942.tar.gz cpython-c54fc3179fd95fc0807de602f5bb6efb0bebf942.tar.bz2 |
Oops! Forgot the value parameter.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/whatsnew22.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/whatsnew22.tex b/Doc/whatsnew/whatsnew22.tex index 7d3a0d8..e12c591 100644 --- a/Doc/whatsnew/whatsnew22.tex +++ b/Doc/whatsnew/whatsnew22.tex @@ -216,7 +216,7 @@ attribute value from \var{object}. \item \method{__set__(\var{object}, \var{value})} sets the attribute on \var{object} to \var{value}. -\item \method{__delete__(\var{object})} deletes the \var{value} +\item \method{__delete__(\var{object}, \var{value})} deletes the \var{value} attribute of \var{object}. \end{itemize} |