diff options
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2011-04-07 04:16:22 (GMT) |
---|---|---|
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2011-04-07 04:16:22 (GMT) |
commit | 0df80926c93ac71b032fffa215cf7b2f831d81b6 (patch) | |
tree | d5ebadf16b02bd3e06bbf0ebf6b822934ee65c28 /Python/bltinmodule.c | |
parent | efbcb18997cf0d25b9d778e2967ec31856547684 (diff) | |
parent | 12338ab10bf3c8b4099494dfd07da85df6c825e2 (diff) | |
download | cpython-0df80926c93ac71b032fffa215cf7b2f831d81b6.zip cpython-0df80926c93ac71b032fffa215cf7b2f831d81b6.tar.gz cpython-0df80926c93ac71b032fffa215cf7b2f831d81b6.tar.bz2 |
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 3074e4c..4283566 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -303,7 +303,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 * @@ -1186,7 +1186,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 * @@ -1374,7 +1374,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 * |