Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 71a5bb8

Browse files
[po] auto sync
1 parent e5e7f76 commit 71a5bb8

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.stat.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"translation": "78.02%", "updated_at": "2025-05-18T07:12:02Z"}
1+
{"translation": "78.03%", "updated_at": "2025-05-19T23:12:30Z"}

library/functools.po

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ msgid ""
1919
msgstr ""
2020
"Project-Id-Version: Python 3.14\n"
2121
"Report-Msgid-Bugs-To: \n"
22-
"POT-Creation-Date: 2025-05-09 14:19+0000\n"
22+
"POT-Creation-Date: 2025-05-16 14:19+0000\n"
2323
"PO-Revision-Date: 2021-06-28 01:06+0000\n"
2424
"Last-Translator: Freesand Leo <[email protected]>, 2025\n"
2525
"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
@@ -576,7 +576,7 @@ msgstr "现在已支持从未识别的类型的下层比较函数返回 ``NotImp
576576
msgid ""
577577
"A singleton object used as a sentinel to reserve a place for positional "
578578
"arguments when calling :func:`partial` and :func:`partialmethod`."
579-
msgstr ""
579+
msgstr "一个单例对象,在调用 :func:`partial` 和 :func:`partialmethod` 时被用作给位置参数保留位置的哨兵值。"
580580

581581
#: ../../library/functools.rst:341
582582
msgid ""
@@ -600,6 +600,13 @@ msgid ""
600600
" newfunc.keywords = keywords\n"
601601
" return newfunc"
602602
msgstr ""
603+
"def partial(func, /, *args, **keywords):\n"
604+
" def newfunc(*more_args, **more_keywords):\n"
605+
" return func(*args, *more_args, **(keywords | more_keywords))\n"
606+
" newfunc.func = func\n"
607+
" newfunc.args = args\n"
608+
" newfunc.keywords = keywords\n"
609+
" return newfunc"
603610

604611
#: ../../library/functools.rst:356
605612
msgid ""

0 commit comments

Comments
 (0)