-
-
Notifications
You must be signed in to change notification settings - Fork 209
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
15e4f5b
commit 671cd95
Showing
1 changed file
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ msgid "" | |
msgstr "" | ||
"Project-Id-Version: Python 3.13\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2024-10-10 00:13+0000\n" | ||
"POT-Creation-Date: 2024-12-15 17:05+0000\n" | ||
"PO-Revision-Date: 2018-05-23 14:38+0000\n" | ||
"Last-Translator: Adrian Liaw <[email protected]>\n" | ||
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-" | ||
|
@@ -3193,8 +3193,9 @@ msgstr "" | |
"是預設值;如果 :class:`!ParamSpec` 沒有預設值,則該屬性將設定為 ``None``。" | ||
|
||
#: ../../library/ast.rst:1803 | ||
#, fuzzy | ||
msgid "" | ||
">>> print(ast.dump(ast.parse(\"type Alias[**P = (int, str)] = Callable[P, " | ||
">>> print(ast.dump(ast.parse(\"type Alias[**P = [int, str]] = Callable[P, " | ||
"int]\"), indent=4))\n" | ||
"Module(\n" | ||
" body=[\n" | ||
|
@@ -3203,7 +3204,7 @@ msgid "" | |
" type_params=[\n" | ||
" ParamSpec(\n" | ||
" name='P',\n" | ||
" default_value=Tuple(\n" | ||
" default_value=List(\n" | ||
" elts=[\n" | ||
" Name(id='int', ctx=Load()),\n" | ||
" Name(id='str', ctx=Load())],\n" | ||
|