[Python-checkins] r71102 - python/trunk/Doc/c-api/number.rst

andrew.kuchling python-checkins at python.org
Fri Apr 3 23:44:49 CEST 2009


Author: andrew.kuchling
Date: Fri Apr  3 23:44:49 2009
New Revision: 71102

Log:
Fix 'the the'; grammar fix

Modified:
   python/trunk/Doc/c-api/number.rst

Modified: python/trunk/Doc/c-api/number.rst
==============================================================================
--- python/trunk/Doc/c-api/number.rst	(original)
+++ python/trunk/Doc/c-api/number.rst	Fri Apr  3 23:44:49 2009
@@ -292,8 +292,8 @@
 
 .. 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.


More information about the Python-checkins mailing list