@@ -56,13 +56,13 @@ msgstr "Windows"
56
56
msgid ""
57
57
":gh:`133626`: Ensures packages are not accidentally bundled into the "
58
58
"traditional installer."
59
- msgstr ":gh:`133626`: 确保软件包不会意外打包进传统安装器。"
59
+ msgstr ":gh:`133626`: 确保软件包不会意外打包进传统安装器。"
60
60
61
61
#: ../NEWS:13
62
62
msgid ""
63
63
":gh:`133512`: Add warnings to :ref:`launcher` about use of subcommands "
64
64
"belonging to the Python install manager."
65
- msgstr ":gh:`133512`:在:ref:`launcher` 中添加了关于使用属于 Python 安装管理器的子命令的警告。"
65
+ msgstr ":gh:`133512`: 在:ref:`launcher` 中添加了关于使用属于 Python 安装管理器的子命令的警告。"
66
66
67
67
#: ../NEWS:17 ../NEWS:249 ../NEWS:621 ../NEWS:1004 ../NEWS:1702 ../NEWS:1872
68
68
#: ../NEWS:2123 ../NEWS:2243 ../NEWS:2884 ../NEWS:3972 ../NEWS:4435
@@ -89,6 +89,8 @@ msgid ""
89
89
":gh:`133639`: Fix ``TestPyReplAutoindent.test_auto_indent_default()`` "
90
90
"doesn't run ``input_code``."
91
91
msgstr ""
92
+ ":gh:`133639`: 修复``TestPyReplAutoindent.test_auto_indent_default()`` "
93
+ "未执行的问题``input_code`` 。"
92
94
93
95
#: ../NEWS:22
94
96
msgid ""
@@ -53113,38 +53115,46 @@ msgid ""
53113
53115
"(REDOS). They have been refactored. This resolves :cve:`2018-1060` and "
53114
53116
":cve:`2018-1061`. Patch by Jamie Davis."
53115
53117
msgstr ""
53118
+ ":issue:`32981`: difflib 和 poplib "
53119
+ "模块中的正则表达式存在灾难性回溯的漏洞。这些正则表达式可以成为拒绝服务攻击的潜在载体。相关正则表达式已被重构。本更改解决了:cve:`2018-1060`"
53120
+ " 和 :cve:`2018-1061`。补丁由 Jamie Davis 提交。"
53116
53121
53117
53122
#: ../NEWS:30128 ../NEWS:33834
53118
53123
msgid ""
53119
53124
":issue:`28414`: The ssl module now allows users to perform their own IDN "
53120
53125
"en/decoding when using SNI."
53121
- msgstr ""
53126
+ msgstr ":issue:`28414`: ssl 模块现在允许用户在使用 SNI 时,自行执行 IDN 的编码与解码操作。 "
53122
53127
53123
53128
#: ../NEWS:30134
53124
53129
msgid ""
53125
53130
":issue:`35877`: Make parenthesis optional for named expressions in while "
53126
53131
"statement. Patch by Karthikeyan Singaravelan."
53127
53132
msgstr ""
53133
+ ":issue:`35877`: 允许在 while 语句中的赋值表达式中省略圆括号。补丁由 Karthikeyan Singaravelan 提交。"
53128
53134
53129
53135
#: ../NEWS:30137
53130
53136
msgid ""
53131
53137
":issue:`35814`: Allow same right hand side expressions in annotated "
53132
53138
"assignments as in normal ones. In particular, ``x: Tuple[int, int] = 1, 2`` "
53133
53139
"(without parentheses on the right) is now allowed."
53134
53140
msgstr ""
53141
+ ":issue:`35814`: 允许在带有类型注解的赋值中使用与普通赋值相同的右侧表达式。特别地,现在允许写作``x: Tuple[int, int] "
53142
+ "= 1, 2`` (右侧不必括号)。"
53135
53143
53136
53144
#: ../NEWS:30141
53137
53145
msgid ""
53138
53146
":issue:`35766`: Add the option to parse PEP 484 type comments in the ast "
53139
53147
"module. (Off by default.) This is merging the key functionality of the third"
53140
53148
" party fork thereof, [typed_ast](https://github.com/python/typed_ast)."
53141
53149
msgstr ""
53150
+ ":issue:`35766`: 在 ast 模块中添加了解析 PEP 484 类型注释的选项。(默认关闭)本更改合并了第三方分支项目 "
53151
+ "[typed_ast](https://github.com/python/typed_ast) 的关键功能。"
53142
53152
53143
53153
#: ../NEWS:30146
53144
53154
msgid ""
53145
53155
":issue:`35713`: Reorganize Python initialization to get working exceptions "
53146
53156
"and sys.stderr earlier."
53147
- msgstr ""
53157
+ msgstr ":issue:`35713`:重新组织 Python 的初始化流程,以便更早地启用异常处理机制和 sys.stderr。 "
53148
53158
53149
53159
#: ../NEWS:30149
53150
53160
msgid ""
@@ -64781,6 +64791,14 @@ msgid ""
64781
64791
"customization after 3.6.3. and vice versa. Initial patch by Charles "
64782
64792
"Wohlganger."
64783
64793
msgstr ""
64794
+ ":issue:`27099`: 将 IDLE 的内置“扩展”功能转换为常规功能。约 10 项 IDLE "
64795
+ "功能原本以可选扩展的形式实现,但是,它们的差异行为导致用户困惑甚至更糟,也不利于维护,因此,进行此次转换。对用户的主要区别在于,现在内置功能的可自定义按键绑定将采用统一方式处理。具体表现为:在某个按键集中编辑绑定仅会影响该按键集中的值。所有绑定均在"
64796
+ " config-extensions.def 文件中系统预设的默认按键集中统一定义。所有自定义按键集会整体保存在 config-"
64797
+ "extension.cfg 文件中。点击“应用”或“确定”后所有更改立即生效。受影响的交互事件包括'<<force-open-"
64798
+ "completions>>'、'<<expand-word>>'、'<<force-open-calltip>>'、'<<flash-"
64799
+ "paren>>'、'<<format-paragraph>>'、'<<run-module>>'、'<<check-module>>'和'<<zoom-"
64800
+ "height>>'。注意:3.6.3 版本之前的(全局)自定义设置将不会影响 3.6.3 版本后按键集特定的自定义设置,反之亦然。初始补丁由 "
64801
+ "Charles Wohlganger 提交。"
64784
64802
64785
64803
#: ../NEWS:37431 ../NEWS:39095
64786
64804
msgid ""