mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Removed 'or long integer' from bin, oct, and hex docstrings.
This commit is contained in:
commit
0df80926c9
1 changed files with 3 additions and 3 deletions
|
@ -303,7 +303,7 @@ builtin_bin(PyObject *self, PyObject *v)
|
||||||
PyDoc_STRVAR(bin_doc,
|
PyDoc_STRVAR(bin_doc,
|
||||||
"bin(number) -> string\n\
|
"bin(number) -> string\n\
|
||||||
\n\
|
\n\
|
||||||
Return the binary representation of an integer or long integer.");
|
Return the binary representation of an integer.");
|
||||||
|
|
||||||
|
|
||||||
static PyObject *
|
static PyObject *
|
||||||
|
@ -1186,7 +1186,7 @@ builtin_hex(PyObject *self, PyObject *v)
|
||||||
PyDoc_STRVAR(hex_doc,
|
PyDoc_STRVAR(hex_doc,
|
||||||
"hex(number) -> string\n\
|
"hex(number) -> string\n\
|
||||||
\n\
|
\n\
|
||||||
Return the hexadecimal representation of an integer or long integer.");
|
Return the hexadecimal representation of an integer.");
|
||||||
|
|
||||||
|
|
||||||
static PyObject *
|
static PyObject *
|
||||||
|
@ -1374,7 +1374,7 @@ builtin_oct(PyObject *self, PyObject *v)
|
||||||
PyDoc_STRVAR(oct_doc,
|
PyDoc_STRVAR(oct_doc,
|
||||||
"oct(number) -> string\n\
|
"oct(number) -> string\n\
|
||||||
\n\
|
\n\
|
||||||
Return the octal representation of an integer or long integer.");
|
Return the octal representation of an integer.");
|
||||||
|
|
||||||
|
|
||||||
static PyObject *
|
static PyObject *
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue