Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions c-api/concrete.po
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.14\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-11-09 17:02+0000\n"
"POT-Creation-Date: 2025-11-17 00:14+0000\n"
"PO-Revision-Date: 2022-11-13 20:37+0800\n"
"Last-Translator: Matt Wang <[email protected]>\n"
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
Expand Down Expand Up @@ -86,7 +86,7 @@ msgstr "函式物件"
msgid "Other Objects"
msgstr "其他物件"

#: ../../c-api/concrete.rst:122
#: ../../c-api/concrete.rst:123
msgid "C API for extension modules"
msgstr "擴充模組的 C API"

Expand Down
101 changes: 101 additions & 0 deletions c-api/picklebuffer.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2001 Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Python 3.14\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-11-17 00:14+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
"Language: zh_TW\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#: ../../c-api/picklebuffer.rst:9
msgid "Pickle buffer objects"
msgstr ""

#: ../../c-api/picklebuffer.rst:13
msgid ""
"A :class:`pickle.PickleBuffer` object wraps a :ref:`buffer-providing object "
"<bufferobjects>` for out-of-band data transfer with the :mod:`pickle` module."
msgstr ""

#: ../../c-api/picklebuffer.rst:19
msgid ""
"This instance of :c:type:`PyTypeObject` represents the Python pickle buffer "
"type. This is the same object as :class:`pickle.PickleBuffer` in the Python "
"layer."
msgstr ""

#: ../../c-api/picklebuffer.rst:25
msgid ""
"Return true if *op* is a pickle buffer instance. This function always "
"succeeds."
msgstr ""

#: ../../c-api/picklebuffer.rst:31
msgid "Create a pickle buffer from the object *obj*."
msgstr ""

#: ../../c-api/picklebuffer.rst:33
msgid ""
"This function will fail if *obj* doesn't support the :ref:`buffer protocol "
"<bufferobjects>`."
msgstr ""

#: ../../c-api/picklebuffer.rst:35
msgid ""
"On success, return a new pickle buffer instance. On failure, set an "
"exception and return ``NULL``."
msgstr ""

#: ../../c-api/picklebuffer.rst:38
msgid "Analogous to calling :class:`pickle.PickleBuffer` with *obj* in Python."
msgstr ""

#: ../../c-api/picklebuffer.rst:43
msgid ""
"Get a pointer to the underlying :c:type:`Py_buffer` that the pickle buffer "
"wraps."
msgstr ""

#: ../../c-api/picklebuffer.rst:45
msgid ""
"The returned pointer is valid as long as *picklebuf* is alive and has not "
"been released. The caller must not modify or free the returned :c:type:"
"`Py_buffer`. If the pickle buffer has been released, raise :exc:`ValueError`."
msgstr ""

#: ../../c-api/picklebuffer.rst:49
msgid ""
"On success, return a pointer to the buffer view. On failure, set an "
"exception and return ``NULL``."
msgstr ""

#: ../../c-api/picklebuffer.rst:55
msgid "Release the underlying buffer held by the pickle buffer."
msgstr ""

#: ../../c-api/picklebuffer.rst:57
msgid ""
"Return ``0`` on success. On failure, set an exception and return ``-1``."
msgstr ""

#: ../../c-api/picklebuffer.rst:59
msgid "Analogous to calling :meth:`pickle.PickleBuffer.release` in Python."
msgstr ""

#: ../../c-api/picklebuffer.rst:5
msgid "object"
msgstr ""

#: ../../c-api/picklebuffer.rst:5
msgid "PickleBuffer"
msgstr ""
Loading