diff options
author | Fred Drake <fdrake@acm.org> | 2001-01-04 05:09:16 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-01-04 05:09:16 (GMT) |
commit | 9c15fa7a0f5ccb7e836361b667831f553f8b943b (patch) | |
tree | e860ca8e797080fe2bac64979aba99480836895f /Doc | |
parent | 23ab199bfd6f5f7fb264d7f79dd177b3e6a59021 (diff) | |
download | cpython-9c15fa7a0f5ccb7e836361b667831f553f8b943b.zip cpython-9c15fa7a0f5ccb7e836361b667831f553f8b943b.tar.gz cpython-9c15fa7a0f5ccb7e836361b667831f553f8b943b.tar.bz2 |
Description of long(): A string parameter is no longer required to be
*decimal*.
This closes SF bug #127273.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libfuncs.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libfuncs.tex b/Doc/lib/libfuncs.tex index 7ffc2ea..2f8dcf9 100644 --- a/Doc/lib/libfuncs.tex +++ b/Doc/lib/libfuncs.tex @@ -396,7 +396,7 @@ the interpreter. \begin{funcdesc}{long}{x\optional{, radix}} Convert a string or number to a long integer. If the argument is a - string, it must contain a possibly signed decimal number of + string, it must contain a possibly signed number of arbitrary size, possibly embedded in whitespace; this behaves identical to \code{string.atol(\var{x})}. The \var{radix} argument is interpreted in the same way as for |