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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

- uses: actions/setup-python@v6
with:
python-version: "3.14"
python-version: "3.13"

- name: Install Dependencies
run: sudo apt-get install gettext
Expand Down
17 changes: 10 additions & 7 deletions c-api/hash.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-09-08 15:25+0800\n"
"POT-Creation-Date: 2025-09-12 00:14+0000\n"
"PO-Revision-Date: 2024-04-30 00:20+0800\n"
"Last-Translator: Matt Wang <[email protected]>\n"
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
Expand Down Expand Up @@ -62,6 +62,10 @@ msgstr "用於複數虛數部分的乘數。"
msgid "Hash function definition used by :c:func:`PyHash_GetFuncDef`."
msgstr ":c:func:`PyHash_GetFuncDef` 所使用的雜湊函式定義。"

#: ../../c-api/hash.rst:56
msgid "Hash function."
msgstr "雜湊函式。"

#: ../../c-api/hash.rst:60
msgid "Hash function name (UTF-8 encoded string)."
msgstr "雜湊函式名稱(UTF-8 編碼字串)。"
Expand Down Expand Up @@ -99,16 +103,15 @@ msgstr "此函式不會失敗:它不會回傳 ``-1``。"
#: ../../c-api/hash.rst:95
msgid ""
"Compute and return the hash value of a buffer of *len* bytes starting at "
"address *ptr*. The hash is guaranteed to match that "
"of :class:`bytes`, :class:`memoryview`, and other built-in objects that "
"implement the :ref:`buffer protocol <bufferobjects>`."
"address *ptr*. The hash is guaranteed to match that of :class:`bytes`, :"
"class:`memoryview`, and other built-in objects that implement the :ref:"
"`buffer protocol <bufferobjects>`."
msgstr ""

#: ../../c-api/hash.rst:100
msgid ""
"Use this function to implement hashing for immutable objects "
"whose :c:member:`~PyTypeObject.tp_richcompare` function compares to another "
"object's buffer."
"Use this function to implement hashing for immutable objects whose :c:member:"
"`~PyTypeObject.tp_richcompare` function compares to another object's buffer."
msgstr ""

#: ../../c-api/hash.rst:104
Expand Down
Loading