]> granicus.if.org Git - python/commitdiff
Removed 'or long integer' from bin, oct, and hex docstrings.
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>
Thu, 7 Apr 2011 04:15:33 +0000 (00:15 -0400)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>
Thu, 7 Apr 2011 04:15:33 +0000 (00:15 -0400)
Python/bltinmodule.c

index 2aea9f745f20a28af203d8e5fa77ad879ae02cb9..6258167b6089f1c4eda687c2534f615881cfcc5d 100644 (file)
@@ -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 *