Change by Rohit Goswami :
--
title: RFC: Clarify Limited API macros for PySequence_Fast -> RFC: Clarify
usage of macros for PySequence_Fast within the Limited C API
___
Python tracker
<https://bugs.python.org/issu
Rohit Goswami added the comment:
Perhaps to be clear, there are two possibilities:
1. `PySequence_Fast` should be removed from the Limited API
2. All macros used with `PySequence_Fast` are valid for use in the context of
the Limited API
In either case the documentation should need to be
Change by Rohit Goswami :
--
assignee: -> docs@python
components: +C API, Documentation
nosy: +docs@python
___
Python tracker
<https://bugs.python.org/issu
New submission from Rohit Goswami :
The `current documentation`_ of the Python-C API mentions that
``PySequence_Fast`` is part of the limited API. However, this may be a typo as
all the functions interacting with a ``PySequence_Fast`` object are macros,
e.g. `PySequence_Fast_GET_SIZE