diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2009-04-03 21:55:34 +0000 |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2009-04-03 21:55:34 +0000 |
commit | ab52252ba966b1fe71ed3908b256ffc4f2c7c97d (patch) | |
tree | d7f8fd168d0d5c1c2392cc419be5767986c89e0d | |
parent | c41cf8c0ee6e28e43ca92e811704db1912bb21df (diff) | |
download | cpython-git-ab52252ba966b1fe71ed3908b256ffc4f2c7c97d.tar.gz |
Fix 'the the'; grammar fix (backport of r71102
-rw-r--r-- | Doc/c-api/number.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/c-api/number.rst b/Doc/c-api/number.rst index b1458b34cc..ffc2585525 100644 --- a/Doc/c-api/number.rst +++ b/Doc/c-api/number.rst @@ -292,8 +292,8 @@ Number Protocol .. cfunction:: PyObject* PyNumber_ToBase(PyObject *n, int base) - Returns the the integer *n* converted to *base* as a string with a base - marker of ``'0b'``, ``'0o'``, or ``'0x'`` if appended applicable. When + Returns the integer *n* converted to *base* as a string with a base + marker of ``'0b'``, ``'0o'``, or ``'0x'`` if applicable. When *base* is not 2, 8, 10, or 16, the format is ``'x#num'`` where x is the base. If *n* is not an int object, it is converted with :cfunc:`PyNumber_Index` first. |