Skip to content

Sync with CPython 3.13 #1123

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 3 commits into
base: 3.13
Choose a base branch
from
Draft
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
624 changes: 316 additions & 308 deletions library/argparse.po

Large diffs are not rendered by default.

1,046 changes: 565 additions & 481 deletions library/ctypes.po

Large diffs are not rendered by default.

869 changes: 430 additions & 439 deletions library/importlib.po

Large diffs are not rendered by default.

259 changes: 138 additions & 121 deletions library/ipaddress.po

Large diffs are not rendered by default.

8 changes: 5 additions & 3 deletions library/itertools.po
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.13\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-04-19 00:14+0000\n"
"POT-Creation-Date: 2025-07-20 00:19+0000\n"
"PO-Revision-Date: 2024-08-16 15:01+0800\n"
"Last-Translator: Adrian Liaw <[email protected]>\n"
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
Expand Down Expand Up @@ -159,7 +159,8 @@ msgid "(p0, p1, ..., p_n-1), ..."
msgstr "(p0, p1, ..., p_n-1), ..."

#: ../../library/itertools.rst:50
msgid "``batched('ABCDEFG', n=3) → ABC DEF G``"
#, fuzzy
msgid "``batched('ABCDEFG', n=2) → AB CD EF G``"
msgstr "``batched('ABCDEFG', n=3) → ABC DEF G``"

#: ../../library/itertools.rst:51
Expand Down Expand Up @@ -559,9 +560,10 @@ msgstr ""
"[('roses', 'red'), ('violets', 'blue'), ('sugar', 'sweet')]"

#: ../../library/itertools.rst:183
#, fuzzy
msgid ""
"def batched(iterable, n, *, strict=False):\n"
" # batched('ABCDEFG', 3) → ABC DEF G\n"
" # batched('ABCDEFG', 2) → AB CD EF G\n"
" if n < 1:\n"
" raise ValueError('n must be at least one')\n"
" iterator = iter(iterable)\n"
Expand Down
Loading