[Python-checkins] cpython (merge 3.2 -> default): Removed 'or long integer' from bin, oct, and hex docstrings.

alexander.belopolsky python-checkins at python.org
Thu Apr 7 06:16:47 CEST 2011


http://hg.python.org/cpython/rev/11052e067192
changeset:   69181:11052e067192
parent:      69178:3eac8302a448
parent:      69180:d29277949ad6
user:        Alexander Belopolsky <alexander.belopolsky at gmail.com>
date:        Thu Apr 07 00:16:22 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
@@ -303,7 +303,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 *
@@ -1186,7 +1186,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 *
@@ -1374,7 +1374,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