Commit 12338ab1 authored by Alexander Belopolsky's avatar Alexander Belopolsky

Removed 'or long integer' from bin, oct, and hex docstrings.

parent 540ab064
...@@ -307,7 +307,7 @@ builtin_bin(PyObject *self, PyObject *v) ...@@ -307,7 +307,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 *
...@@ -1192,7 +1192,7 @@ builtin_hex(PyObject *self, PyObject *v) ...@@ -1192,7 +1192,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 *
...@@ -1380,7 +1380,7 @@ builtin_oct(PyObject *self, PyObject *v) ...@@ -1380,7 +1380,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 *
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment