@@ -17,7 +17,7 @@ msgid ""
17
17
msgstr ""
18
18
"Project-Id-Version : Python 3.8\n "
19
19
"Report-Msgid-Bugs-To : \n "
20
- "POT-Creation-Date : 2024-07-20 03 :35+0000\n "
20
+ "POT-Creation-Date : 2024-08-09 19 :35+0000\n "
21
21
"PO-Revision-Date : 2020-05-30 12:18+0000\n "
22
22
"Last-Translator : Freesand Leo <yuqinju@163.com>, 2024\n "
23
23
"Language-Team : Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n "
@@ -355,6 +355,8 @@ msgid ""
355
355
"bit more memory, because Python may have to maintain two versions of each "
356
356
"string (in the legacy format and in the new efficient storage)."
357
357
msgstr ""
358
+ "在 C API 方面,:pep:`393` 完全向下兼容。 旧的 API 至少还能使用五年。 使用传统 API "
359
+ "的应用程序不会完全受益于内存的减少,或者更糟的是,可能会使用更多的内存,因为 Python 可能需要维护每个字符串的两个版本(传统格式和新的高效存储)。"
358
360
359
361
#: ../../whatsnew/3.3.rst:227
360
362
msgid "Functionality"
@@ -371,24 +373,26 @@ msgid ""
371
373
"between narrow and wide builds no longer exists and Python now behaves like "
372
374
"a wide build, even under Windows."
373
375
msgstr ""
376
+ "Python 现在始终支持全部 Unicode 码位,包括非 BMP 码位 (即从``U+0000`` 到 ``U+10FFFF``)。 "
377
+ "窄编译版本和宽编译版本之间的区别已不复存在,Python 现在的行为就像宽编译版本,甚至在 Windows 下也是如此。"
374
378
375
379
#: ../../whatsnew/3.3.rst:236
376
380
msgid ""
377
381
"With the death of narrow builds, the problems specific to narrow builds have"
378
382
" also been fixed, for example:"
379
- msgstr ""
383
+ msgstr "随着窄编译版本的消亡,窄编译版本特有的问题也得到了解决,例如: "
380
384
381
385
#: ../../whatsnew/3.3.rst:239
382
386
msgid ""
383
387
":func:`len` now always returns 1 for non-BMP characters, so "
384
388
"``len('\\ U0010FFFF') == 1``;"
385
- msgstr ""
389
+ msgstr "现在 :func:`len` 对于非 BMP 字符总是返回 1,因此 ``len(' \\ U0010FFFF') == 1``; "
386
390
387
391
#: ../../whatsnew/3.3.rst:242
388
392
msgid ""
389
393
"surrogate pairs are not recombined in string literals, so ``'\\ uDBFF\\ uDFFF'"
390
394
" != '\\ U0010FFFF'``;"
391
- msgstr ""
395
+ msgstr "替换对不会在字符串字面值中重新合并,因此 ``' \\ uDBFF \\ uDFFF' != ' \\ U0010FFFF'``; "
392
396
393
397
#: ../../whatsnew/3.3.rst:245
394
398
msgid ""
0 commit comments