diff options
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2011-04-07 00:15:33 -0400 |
---|---|---|
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2011-04-07 00:15:33 -0400 |
commit | 12338ab10bf3c8b4099494dfd07da85df6c825e2 (patch) | |
tree | 99e709506bf4610f6c06d7b5da54ef45667e9187 /Python/bltinmodule.c | |
parent | 540ab064e2bfa5c5b05ccc78f0401c240a78ff16 (diff) | |
download | cpython-git-12338ab10bf3c8b4099494dfd07da85df6c825e2.tar.gz |
Removed 'or long integer' from bin, oct, and hex docstrings.
Diffstat (limited to 'Python/bltinmodule.c')
-rw-r--r-- | Python/bltinmodule.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 2aea9f745f..6258167b60 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -307,7 +307,7 @@ builtin_bin(PyObject *self, PyObject *v) PyDoc_STRVAR(bin_doc, "bin(number) -> string\n\ \n\ -Return the binary representation of an integer or long integer."); +Return the binary representation of an integer."); static PyObject * @@ -1192,7 +1192,7 @@ builtin_hex(PyObject *self, PyObject *v) PyDoc_STRVAR(hex_doc, "hex(number) -> string\n\ \n\ -Return the hexadecimal representation of an integer or long integer."); +Return the hexadecimal representation of an integer."); static PyObject * @@ -1380,7 +1380,7 @@ builtin_oct(PyObject *self, PyObject *v) PyDoc_STRVAR(oct_doc, "oct(number) -> string\n\ \n\ -Return the octal representation of an integer or long integer."); +Return the octal representation of an integer."); static PyObject * |