[Python-checkins] cpython (3.2): Removed 'or long integer' from bin, oct, and hex docstrings.
alexander.belopolsky
python-checkins at python.org
Thu Apr 7 06:16:45 CEST 2011
http://hg.python.org/cpython/rev/d29277949ad6
changeset: 69180:d29277949ad6
branch: 3.2
parent: 69177:c4a514199dba
user: Alexander Belopolsky <alexander.belopolsky at gmail.com>
date: Thu Apr 07 00:15:33 2011 -0400
summary:
Removed 'or long integer' from bin, oct, and hex docstrings.
files:
Python/bltinmodule.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
--- a/Python/bltinmodule.c
+++ b/Python/bltinmodule.c
@@ -307,7 +307,7 @@
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 @@
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 @@
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 *
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list