开源 企业版 高校版 私有云 模力方舟 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
/
bytes.rst
python3.7.4
/
Doc
/
c-api
/
bytes.rst
bytes.rst 9.13 KB
一键复制 编辑 原始数据 按行查看 历史
zhangweibo 提交于 2021年11月17日 13:49 +08:00 . git init
.. highlightlang:: c

Bytes Objects

These functions raise :exc:`TypeError` when expecting a bytes parameter and are called with a non-bytes parameter.

.. index:: object: bytes


.. c:type:: PyBytesObject

 This subtype of :c:type:`PyObject` represents a Python bytes object.


.. c:var:: PyTypeObject PyBytes_Type

 This instance of :c:type:`PyTypeObject` represents the Python bytes type; it
 is the same object as :class:`bytes` in the Python layer.


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

 Return true if the object *o* is a bytes object or an instance of a subtype
 of the bytes type.


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

 Return true if the object *o* is a bytes object, but not an instance of a
 subtype of the bytes type.


.. c:function:: PyObject* PyBytes_FromString(const char *v)

 Return a new bytes object with a copy of the string *v* as value on success,
 and *NULL* on failure. The parameter *v* must not be *NULL*; it will not be
 checked.


.. c:function:: PyObject* PyBytes_FromStringAndSize(const char *v, Py_ssize_t len)

 Return a new bytes object with a copy of the string *v* as value and length
 *len* on success, and *NULL* on failure. If *v* is *NULL*, the contents of
 the bytes object are uninitialized.


.. c:function:: PyObject* PyBytes_FromFormat(const char *format, ...)

 Take a C :c:func:`printf`\ -style *format* string and a variable number of
 arguments, calculate the size of the resulting Python bytes object and return
 a bytes object with the values formatted into it. The variable arguments
 must be C types and must correspond exactly to the format characters in the
 *format* string. The following format characters are allowed:

 .. % XXX: This should be exactly the same as the table in PyErr_Format.
 .. % One should just refer to the other.
 .. % XXX: The descriptions for %zd and %zu are wrong, but the truth is complicated
 .. % because not all compilers support the %z width modifier -- we fake it
 .. % when necessary via interpolating PY_FORMAT_SIZE_T.

 .. tabularcolumns:: |l|l|L|

 +-------------------+---------------+--------------------------------+
 | Format Characters | Type | Comment |
 +===================+===============+================================+
 | :attr:`%%` | *n/a* | The literal % character. |
 +-------------------+---------------+--------------------------------+
 | :attr:`%c` | int | A single byte, |
 | | | represented as a C int. |
 +-------------------+---------------+--------------------------------+
 | :attr:`%d` | int | Equivalent to |
 | | | ``printf("%d")``. [1]_ |
 +-------------------+---------------+--------------------------------+
 | :attr:`%u` | unsigned int | Equivalent to |
 | | | ``printf("%u")``. [1]_ |
 +-------------------+---------------+--------------------------------+
 | :attr:`%ld` | long | Equivalent to |
 | | | ``printf("%ld")``. [1]_ |
 +-------------------+---------------+--------------------------------+
 | :attr:`%lu` | unsigned long | Equivalent to |
 | | | ``printf("%lu")``. [1]_ |
 +-------------------+---------------+--------------------------------+
 | :attr:`%zd` | Py_ssize_t | Equivalent to |
 | | | ``printf("%zd")``. [1]_ |
 +-------------------+---------------+--------------------------------+
 | :attr:`%zu` | size_t | Equivalent to |
 | | | ``printf("%zu")``. [1]_ |
 +-------------------+---------------+--------------------------------+
 | :attr:`%i` | int | Equivalent to |
 | | | ``printf("%i")``. [1]_ |
 +-------------------+---------------+--------------------------------+
 | :attr:`%x` | int | Equivalent to |
 | | | ``printf("%x")``. [1]_ |
 +-------------------+---------------+--------------------------------+
 | :attr:`%s` | const char\* | A null-terminated C character |
 | | | array. |
 +-------------------+---------------+--------------------------------+
 | :attr:`%p` | const void\* | The hex representation of a C |
 | | | pointer. Mostly equivalent to |
 | | | ``printf("%p")`` except that |
 | | | it is guaranteed to start with |
 | | | the literal ``0x`` regardless |
 | | | of what the platform's |
 | | | ``printf`` yields. |
 +-------------------+---------------+--------------------------------+

 An unrecognized format character causes all the rest of the format string to be
 copied as-is to the result object, and any extra arguments discarded.

 .. [1] For integer specifiers (d, u, ld, lu, zd, zu, i, x): the 0-conversion
 flag has effect even when a precision is given.


.. c:function:: PyObject* PyBytes_FromFormatV(const char *format, va_list vargs)

 Identical to :c:func:`PyBytes_FromFormat` except that it takes exactly two
 arguments.


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

 Return the bytes representation of object *o* that implements the buffer
 protocol.


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

 Return the length of the bytes in bytes object *o*.


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

 Macro form of :c:func:`PyBytes_Size` but without error checking.


.. c:function:: char* PyBytes_AsString(PyObject *o)

 Return a pointer to the contents of *o*. The pointer
 refers to the internal buffer of *o*, which consists of ``len(o) + 1``
 bytes. The last byte in the buffer is always null, regardless of
 whether there are any other null bytes. The data must not be
 modified in any way, unless the object was just created using
 ``PyBytes_FromStringAndSize(NULL, size)``. It must not be deallocated. If
 *o* is not a bytes object at all, :c:func:`PyBytes_AsString` returns *NULL*
 and raises :exc:`TypeError`.


.. c:function:: char* PyBytes_AS_STRING(PyObject *string)

 Macro form of :c:func:`PyBytes_AsString` but without error checking.


.. c:function:: int PyBytes_AsStringAndSize(PyObject *obj, char **buffer, Py_ssize_t *length)

 Return the null-terminated contents of the object *obj*
 through the output variables *buffer* and *length*.

 If *length* is *NULL*, the bytes object
 may not contain embedded null bytes;
 if it does, the function returns ``-1`` and a :exc:`ValueError` is raised.

 The buffer refers to an internal buffer of *obj*, which includes an
 additional null byte at the end (not counted in *length*). The data
 must not be modified in any way, unless the object was just created using
 ``PyBytes_FromStringAndSize(NULL, size)``. It must not be deallocated. If
 *obj* is not a bytes object at all, :c:func:`PyBytes_AsStringAndSize`
 returns ``-1`` and raises :exc:`TypeError`.

 .. versionchanged:: 3.5
 Previously, :exc:`TypeError` was raised when embedded null bytes were
 encountered in the bytes object.


.. c:function:: void PyBytes_Concat(PyObject **bytes, PyObject *newpart)

 Create a new bytes object in *\*bytes* containing the contents of *newpart*
 appended to *bytes*; the caller will own the new reference. The reference to
 the old value of *bytes* will be stolen. If the new object cannot be
 created, the old reference to *bytes* will still be discarded and the value
 of *\*bytes* will be set to *NULL*; the appropriate exception will be set.


.. c:function:: void PyBytes_ConcatAndDel(PyObject **bytes, PyObject *newpart)

 Create a new bytes object in *\*bytes* containing the contents of *newpart*
 appended to *bytes*. This version decrements the reference count of
 *newpart*.


.. c:function:: int _PyBytes_Resize(PyObject **bytes, Py_ssize_t newsize)

 A way to resize a bytes object even though it is "immutable". Only use this
 to build up a brand new bytes object; don't use this if the bytes may already
 be known in other parts of the code. It is an error to call this function if
 the refcount on the input bytes object is not one. Pass the address of an
 existing bytes object as an lvalue (it may be written into), and the new size
 desired. On success, *\*bytes* holds the resized bytes object and ``0`` is
 returned; the address in *\*bytes* may differ from its input value. If the
 reallocation fails, the original bytes object at *\*bytes* is deallocated,
 *\*bytes* is set to *NULL*, :exc:`MemoryError` is set, and ``-1`` is
 returned.
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 によって変換されたページ (->オリジナル) /