开源 企业版 高校版 私有云 模力方舟 AI 队友
代码拉取完成,页面将自动刷新
捐赠
捐赠前请先登录
扫描微信二维码支付
取消
支付完成
支付提示
将跳转至支付宝完成支付
确定
取消
1 Star 0 Fork 0

source-code-analysis/python3.7.4

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
文件
master
分支 (1)
master
master
分支 (1)
master
克隆/下载
克隆/下载
提示
下载代码请复制以下命令到终端执行
为确保你提交的代码身份被 Gitee 正确识别,请执行以下命令完成配置
初次使用 SSH 协议进行代码克隆、推送等操作时,需按下述提示完成 SSH 配置
1 生成 RSA 密钥
2 获取 RSA 公钥内容,并配置到 SSH公钥
在 Gitee 上使用 SVN,请访问 使用指南
使用 HTTPS 协议时,命令行会出现如下账号密码验证步骤。基于安全考虑,Gitee 建议 配置并使用私人令牌 替代登录密码进行克隆、推送等操作
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # 私人令牌
master
分支 (1)
master
python3.7.4
/
Doc
/
c-api
/
sequence.rst
python3.7.4
/
Doc
/
c-api
/
sequence.rst
sequence.rst 6.39 KB
一键复制 编辑 原始数据 按行查看 历史
zhangweibo 提交于 2021年11月17日 13:49 +08:00 . git init
.. highlightlang:: c

Sequence Protocol

.. c:function:: int PySequence_Check(PyObject *o)

 Return ``1`` if the object provides sequence protocol, and ``0`` otherwise.
 Note that it returns ``1`` for Python classes with a :meth:`__getitem__`
 method unless they are :class:`dict` subclasses since in general case it
 is impossible to determine what the type of keys it supports. This
 function always succeeds.


.. c:function:: Py_ssize_t PySequence_Size(PyObject *o)
 Py_ssize_t PySequence_Length(PyObject *o)

 .. index:: builtin: len

 Returns the number of objects in sequence *o* on success, and ``-1`` on
 failure. This is equivalent to the Python expression ``len(o)``.


.. c:function:: PyObject* PySequence_Concat(PyObject *o1, PyObject *o2)

 Return the concatenation of *o1* and *o2* on success, and *NULL* on failure.
 This is the equivalent of the Python expression ``o1 + o2``.


.. c:function:: PyObject* PySequence_Repeat(PyObject *o, Py_ssize_t count)

 Return the result of repeating sequence object *o* *count* times, or *NULL* on
 failure. This is the equivalent of the Python expression ``o * count``.


.. c:function:: PyObject* PySequence_InPlaceConcat(PyObject *o1, PyObject *o2)

 Return the concatenation of *o1* and *o2* on success, and *NULL* on failure.
 The operation is done *in-place* when *o1* supports it. This is the equivalent
 of the Python expression ``o1 += o2``.


.. c:function:: PyObject* PySequence_InPlaceRepeat(PyObject *o, Py_ssize_t count)

 Return the result of repeating sequence object *o* *count* times, or *NULL* on
 failure. The operation is done *in-place* when *o* supports it. This is the
 equivalent of the Python expression ``o *= count``.


.. c:function:: PyObject* PySequence_GetItem(PyObject *o, Py_ssize_t i)

 Return the *i*\ th element of *o*, or *NULL* on failure. This is the equivalent of
 the Python expression ``o[i]``.


.. c:function:: PyObject* PySequence_GetSlice(PyObject *o, Py_ssize_t i1, Py_ssize_t i2)

 Return the slice of sequence object *o* between *i1* and *i2*, or *NULL* on
 failure. This is the equivalent of the Python expression ``o[i1:i2]``.


.. c:function:: int PySequence_SetItem(PyObject *o, Py_ssize_t i, PyObject *v)

 Assign object *v* to the *i*\ th element of *o*. Raise an exception
 and return ``-1`` on failure; return ``0`` on success. This
 is the equivalent of the Python statement ``o[i] = v``. This function *does
 not* steal a reference to *v*.

 If *v* is *NULL*, the element is deleted, however this feature is
 deprecated in favour of using :c:func:`PySequence_DelItem`.


.. c:function:: int PySequence_DelItem(PyObject *o, Py_ssize_t i)

 Delete the *i*\ th element of object *o*. Returns ``-1`` on failure. This is the
 equivalent of the Python statement ``del o[i]``.


.. c:function:: int PySequence_SetSlice(PyObject *o, Py_ssize_t i1, Py_ssize_t i2, PyObject *v)

 Assign the sequence object *v* to the slice in sequence object *o* from *i1* to
 *i2*. This is the equivalent of the Python statement ``o[i1:i2] = v``.


.. c:function:: int PySequence_DelSlice(PyObject *o, Py_ssize_t i1, Py_ssize_t i2)

 Delete the slice in sequence object *o* from *i1* to *i2*. Returns ``-1`` on
 failure. This is the equivalent of the Python statement ``del o[i1:i2]``.


.. c:function:: Py_ssize_t PySequence_Count(PyObject *o, PyObject *value)

 Return the number of occurrences of *value* in *o*, that is, return the number
 of keys for which ``o[key] == value``. On failure, return ``-1``. This is
 equivalent to the Python expression ``o.count(value)``.


.. c:function:: int PySequence_Contains(PyObject *o, PyObject *value)

 Determine if *o* contains *value*. If an item in *o* is equal to *value*,
 return ``1``, otherwise return ``0``. On error, return ``-1``. This is
 equivalent to the Python expression ``value in o``.


.. c:function:: Py_ssize_t PySequence_Index(PyObject *o, PyObject *value)

 Return the first index *i* for which ``o[i] == value``. On error, return
 ``-1``. This is equivalent to the Python expression ``o.index(value)``.


.. c:function:: PyObject* PySequence_List(PyObject *o)

 Return a list object with the same contents as the sequence or iterable *o*,
 or *NULL* on failure. The returned list is guaranteed to be new. This is
 equivalent to the Python expression ``list(o)``.


.. c:function:: PyObject* PySequence_Tuple(PyObject *o)

 .. index:: builtin: tuple

 Return a tuple object with the same contents as the sequence or iterable *o*,
 or *NULL* on failure. If *o* is a tuple, a new reference will be returned,
 otherwise a tuple will be constructed with the appropriate contents. This is
 equivalent to the Python expression ``tuple(o)``.


.. c:function:: PyObject* PySequence_Fast(PyObject *o, const char *m)

 Return the sequence or iterable *o* as a list, unless it is already a tuple or list, in
 which case *o* is returned. Use :c:func:`PySequence_Fast_GET_ITEM` to access
 the members of the result. Returns *NULL* on failure. If the object is not
 a sequence or iterable, raises :exc:`TypeError` with *m* as the message text.


.. c:function:: Py_ssize_t PySequence_Fast_GET_SIZE(PyObject *o)

 Returns the length of *o*, assuming that *o* was returned by
 :c:func:`PySequence_Fast` and that *o* is not *NULL*. The size can also be
 gotten by calling :c:func:`PySequence_Size` on *o*, but
 :c:func:`PySequence_Fast_GET_SIZE` is faster because it can assume *o* is a list
 or tuple.


.. c:function:: PyObject* PySequence_Fast_GET_ITEM(PyObject *o, Py_ssize_t i)

 Return the *i*\ th element of *o*, assuming that *o* was returned by
 :c:func:`PySequence_Fast`, *o* is not *NULL*, and that *i* is within bounds.


.. c:function:: PyObject** PySequence_Fast_ITEMS(PyObject *o)

 Return the underlying array of PyObject pointers. Assumes that *o* was returned
 by :c:func:`PySequence_Fast` and *o* is not *NULL*.

 Note, if a list gets resized, the reallocation may relocate the items array.
 So, only use the underlying array pointer in contexts where the sequence
 cannot change.


.. c:function:: PyObject* PySequence_ITEM(PyObject *o, Py_ssize_t i)

 Return the *i*\ th element of *o* or *NULL* on failure. Macro form of
 :c:func:`PySequence_GetItem` but without checking that
 :c:func:`PySequence_Check` on *o* is true and without adjustment for negative
 indices.
Loading...
举报
举报成功
我们将于2个工作日内通过站内信反馈结果给你!
请认真填写举报原因,尽可能描述详细。
请选择举报类型
取消
发送
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

简介

暂无描述
取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
编辑仓库简介
简介内容
主页
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/python_sourcecode/python3.7.4.git
git@gitee.com:python_sourcecode/python3.7.4.git
python_sourcecode
python3.7.4
python3.7.4
master
点此查找更多帮助

搜索帮助

评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册

AltStyle によって変換されたページ (->オリジナル) /