This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients asvetlov, docs@python, georg.brandl, serhiy.storchaka
Date 2012-08-09.19:34:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1344540859.33.0.931473927251.issue15527@psf.upfronthosting.co.za>
In-reply-to
Content
Hmm, I'm hoping that will be fixed by fixing of some markup words (:c:func:, :func:, :meth:, etc) processing, and not that they will simply be removed. :c:func: works only for function name without parameters or for function name with empty list of parameters inside the parentheses (:c:func:`PyMem_Malloc`, :c:func:`PyMem_Malloc()`, but not :c:func:`PyMem_Malloc(1)`). :c:macro: works also for non-empty list (:c:macro:`Py_CLEAR(obj)` for example).

And Doc/c-api/memory.rst is not only one issue file. The list of suspicious places you can get by the followed command:

    find Doc/ -type f -name '*.rst' -exec egrep -n --color ':`\w+[(][^)]' '{}' +
History
Date User Action Args
2012-08-09 19:34:19serhiy.storchakasetrecipients: + serhiy.storchaka, georg.brandl, asvetlov, docs@python
2012-08-09 19:34:19serhiy.storchakasetmessageid: <1344540859.33.0.931473927251.issue15527@psf.upfronthosting.co.za>
2012-08-09 19:34:18serhiy.storchakalinkissue15527 messages
2012-08-09 19:34:18serhiy.storchakacreate