summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorChris Jerdonek <chris.jerdonek@gmail.com>2012-10-07 22:02:16 (GMT)
committerChris Jerdonek <chris.jerdonek@gmail.com>2012-10-07 22:02:16 (GMT)
commit4a7df9aba91605c8e689b735f119837d9b9c89b4 (patch)
treee76e3bb7ab8f143c9cc6ac558bfcab352d1acc90 /Objects
parent8836eefb1e27e845c0403dc39f6463c4de795760 (diff)
parent042fa653ab91c05dfb50e227361ba345e45169c7 (diff)
downloadcpython-4a7df9aba91605c8e689b735f119837d9b9c89b4.zip
cpython-4a7df9aba91605c8e689b735f119837d9b9c89b4.tar.gz
cpython-4a7df9aba91605c8e689b735f119837d9b9c89b4.tar.bz2
Issue #14783: Merge changes from 3.3.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/longobject.c19
-rw-r--r--Objects/rangeobject.c5
-rw-r--r--Objects/sliceobject.c3
-rw-r--r--Objects/unicodeobject.c3
4 files changed, 20 insertions, 10 deletions
diff --git a/Objects/longobject.c b/Objects/longobject.c
index 78dc27a..2aac8e4 100644
--- a/Objects/longobject.c
+++ b/Objects/longobject.c
@@ -4847,13 +4847,20 @@ static PyGetSetDef long_getset[] = {
};
PyDoc_STRVAR(long_doc,
-"int(x[, base]) -> integer\n\
+"int(x=0) -> integer\n\
+int(x, base=10) -> integer\n\
\n\
-Convert a string or number to an integer, if possible. A floating\n\
-point argument will be truncated towards zero (this does not include a\n\
-string representation of a floating point number!) When converting a\n\
-string, use the optional base. It is an error to supply a base when\n\
-converting a non-string.");
+Convert a number or string to an integer, or return 0 if no arguments\n\
+are given. If x is a number, return x.__int__(). For floating point\n\
+numbers, this truncates towards zero.\n\
+\n\
+If x is not a number or if base is given, then x must be a string,\n\
+bytes, or bytearray instance representing an integer literal in the\n\
+given base. The literal can be preceded by '+' or '-' and be surrounded\n\
+by whitespace. The base defaults to 10. Valid bases are 0 and 2-36.\n\
+Base 0 means to interpret the base from the string as an integer literal.\n\
+>>> int('0b100', base=0)\n\
+4");
static PyNumberMethods long_as_number = {
(binaryfunc)long_add, /*nb_add*/
diff --git a/Objects/rangeobject.c b/Objects/rangeobject.c
index c47a4ff..68d5636 100644
--- a/Objects/rangeobject.c
+++ b/Objects/rangeobject.c
@@ -136,7 +136,8 @@ range_new(PyTypeObject *type, PyObject *args, PyObject *kw)
}
PyDoc_STRVAR(range_doc,
-"range([start,] stop[, step]) -> range object\n\
+"range(stop) -> range object\n\
+range(start, stop[, step]) -> range object\n\
\n\
Returns a virtual sequence of numbers from start to stop by step.");
@@ -969,7 +970,7 @@ rangeiter_reduce(rangeiterobject *r)
{
PyObject *start=NULL, *stop=NULL, *step=NULL;
PyObject *range;
-
+
/* create a range object for pickling */
start = PyLong_FromLong(r->start);
if (start == NULL)
diff --git a/Objects/sliceobject.c b/Objects/sliceobject.c
index c4a1907..1593335 100644
--- a/Objects/sliceobject.c
+++ b/Objects/sliceobject.c
@@ -269,7 +269,8 @@ slice_new(PyTypeObject *type, PyObject *args, PyObject *kw)
}
PyDoc_STRVAR(slice_doc,
-"slice([start,] stop[, step])\n\
+"slice(stop)\n\
+slice(start, stop[, step])\n\
\n\
Create a slice object. This is used for extended slicing (e.g. a[0:10:2]).");
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index 73a3dc4..b4c7ecf 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -14133,7 +14133,8 @@ onError:
}
PyDoc_STRVAR(unicode_doc,
- "str(object[, encoding[, errors]]) -> str\n\
+"str(object='') -> str\n\
+str(bytes_or_buffer[, encoding[, errors]]) -> str\n\
\n\
Create a new string object from the given object. If encoding or\n\
errors is specified, then the object must expose a data buffer\n\