[Python-checkins] r71301 - in python/branches/release26-maint/Doc: c-api/object.rst howto/regex.rst

hirokazu.yamamoto python-checkins at python.org
Mon Apr 6 02:24:29 CEST 2009


Author: hirokazu.yamamoto
Date: Mon Apr  6 02:24:29 2009
New Revision: 71301

Log:
Fixed typo.

Modified:
   python/branches/release26-maint/Doc/c-api/object.rst
   python/branches/release26-maint/Doc/howto/regex.rst

Modified: python/branches/release26-maint/Doc/c-api/object.rst
==============================================================================
--- python/branches/release26-maint/Doc/c-api/object.rst	(original)
+++ python/branches/release26-maint/Doc/c-api/object.rst	Mon Apr  6 02:24:29 2009
@@ -66,8 +66,7 @@
    ``o.attr_name = v``.
 
 
-.. cfunction:: int PyObject_GenericSetAttr(PyObject *o, PyObject *name, PyObject
-*value)
+.. cfunction:: int PyObject_GenericSetAttr(PyObject *o, PyObject *name, PyObject *value)
 
    Generic attribute setter function that is meant to be put into a type
    object's ``tp_setattro`` slot.  It looks for a data descriptor in the

Modified: python/branches/release26-maint/Doc/howto/regex.rst
==============================================================================
--- python/branches/release26-maint/Doc/howto/regex.rst	(original)
+++ python/branches/release26-maint/Doc/howto/regex.rst	Mon Apr  6 02:24:29 2009
@@ -600,7 +600,7 @@
 
 .. data:: U
           UNICODE
-   :index:
+   :noindex:
 
    Make ``\w``, ``\W``, ``\b``, ``\B``, ``\d``, ``\D``, ``\s`` and ``\S``
    dependent on the Unicode character properties database.


More information about the Python-checkins mailing list