diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-08-29 07:57:59 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-08-29 07:57:59 (GMT) |
commit | ca810467a4db78781c5e35100024cae779e954e5 (patch) | |
tree | 6f9bad18c0b52f59cafe039de83d8002018b8ba0 /Doc | |
parent | 378b2c9a037bccdbcaca32541c1baebb1a0de30a (diff) | |
download | cpython-ca810467a4db78781c5e35100024cae779e954e5.zip cpython-ca810467a4db78781c5e35100024cae779e954e5.tar.gz cpython-ca810467a4db78781c5e35100024cae779e954e5.tar.bz2 |
Get rid of more coerce cruft (really check in this time :-)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/api/refcounts.dat | 4 | ||||
-rw-r--r-- | Doc/lib/libfuncs.tex | 6 | ||||
-rw-r--r-- | Doc/tut/tut.tex | 2 |
3 files changed, 1 insertions, 11 deletions
diff --git a/Doc/api/refcounts.dat b/Doc/api/refcounts.dat index b8aaad5..019bfd4 100644 --- a/Doc/api/refcounts.dat +++ b/Doc/api/refcounts.dat @@ -712,10 +712,6 @@ PyNumber_And:PyObject*:o2:0: PyNumber_Check:PyObject*:o:0: PyNumber_Check:int::: -PyNumber_Coerce:int::: -PyNumber_Coerce:PyObject**:p1:+1: -PyNumber_Coerce:PyObject**:p2:+1: - PyNumber_Divide:PyObject*::+1: PyNumber_Divide:PyObject*:o1:0: PyNumber_Divide:PyObject*:o2:0: diff --git a/Doc/lib/libfuncs.tex b/Doc/lib/libfuncs.tex index c9e35b5..f51f0d5 100644 --- a/Doc/lib/libfuncs.tex +++ b/Doc/lib/libfuncs.tex @@ -1228,12 +1228,6 @@ bypass these functions without concerns about missing something important. argument). \end{funcdesc} -\begin{funcdesc}{coerce}{x, y} - Return a tuple consisting of the two numeric arguments converted to - a common type, using the same rules as used by arithmetic - operations. If coercion is not possible, raise \exception{TypeError}. -\end{funcdesc} - \begin{funcdesc}{intern}{string} Enter \var{string} in the table of ``interned'' strings and return the interned string -- which is \var{string} itself or a copy. diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index 6f6fe6f..702d759 100644 --- a/Doc/tut/tut.tex +++ b/Doc/tut/tut.tex @@ -2696,7 +2696,7 @@ standard module \module{__builtin__}\refbimodindex{__builtin__}: 'UserWarning', 'ValueError', 'Warning', 'WindowsError', 'ZeroDivisionError', '_', '__debug__', '__doc__', '__import__', '__name__', 'abs', 'basestring', 'bool', 'buffer', - 'callable', 'chr', 'classmethod', 'cmp', 'coerce', 'compile', + 'callable', 'chr', 'classmethod', 'cmp', 'compile', 'complex', 'copyright', 'credits', 'delattr', 'dict', 'dir', 'divmod', 'enumerate', 'eval', 'execfile', 'exit', 'file', 'filter', 'float', 'frozenset', 'getattr', 'globals', 'hasattr', 'hash', 'help', 'hex', |