diff options
author | Raymond Hettinger <python@rcn.com> | 2004-08-17 02:31:55 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-08-17 02:31:55 (GMT) |
commit | 8de636e2ae8743a92a587b7c65837df40737bf78 (patch) | |
tree | 2892756b87fac4482a4a456d79e3cfca273061c6 /Doc | |
parent | cb40ba1f5e5913c8f9ff807f419569301c23008f (diff) | |
download | cpython-8de636e2ae8743a92a587b7c65837df40737bf78.zip cpython-8de636e2ae8743a92a587b7c65837df40737bf78.tar.gz cpython-8de636e2ae8743a92a587b7c65837df40737bf78.tar.bz2 |
SF bug #951482: New module: doc versus action
Strengthen the warnings about creating bogus objects using the new module.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libnew.tex | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/lib/libnew.tex b/Doc/lib/libnew.tex index 67bfb2e..f1ff7ea 100644 --- a/Doc/lib/libnew.tex +++ b/Doc/lib/libnew.tex @@ -11,6 +11,8 @@ creation functions. This is for use primarily in marshal-type functions, when a new object needs to be created ``magically'' and not by using the regular creation functions. This module provides a low-level interface to the interpreter, so care must be exercised when using this module. +It is possible to supply non-sensical arguments which crash the +interpreter when the object is used. The \module{new} module defines the following functions: |