]> granicus.if.org Git - python/commitdiff
Fix 'the the'; grammar fix
authorAndrew M. Kuchling <amk@amk.ca>
Fri, 3 Apr 2009 21:44:49 +0000 (21:44 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Fri, 3 Apr 2009 21:44:49 +0000 (21:44 +0000)
Doc/c-api/number.rst

index b1458b34cc2895e13af5c6b588381e1814271d8b..ffc2585525fe96aea3910a27ca48ad9353f2da32 100644 (file)
@@ -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.