Skip to content

Commit 63df23c

Browse files
[po] auto sync
1 parent 596bb5b commit 63df23c

File tree

2 files changed

+23
-4
lines changed

2 files changed

+23
-4
lines changed

.stat.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"translation": "95.14%", "updated_at": "2024-06-03T15:47:10Z"}
1+
{"translation": "95.16%", "updated_at": "2024-06-05T16:47:23Z"}

whatsnew/2.2.po

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,8 @@ msgid ""
246246
"this class couldn't be passed to internal functions that expected a built-in"
247247
" file, something which is possible with our new :class:`!LockableFile`."
248248
msgstr ""
249+
"现在已经过时的 :mod:`!posixfile` 模块包含一个类,该类模仿了文件对象的所有方法,并添加了一个 :meth:`!lock` "
250+
"方法,但这个类不能传递给期望内置文件对象的内部函数,而这在我们的新 :class:`!LockableFile` 实现中是可能的。"
249251

250252
#: ../../whatsnew/2.2.rst:153
251253
msgid "Descriptors"
@@ -262,6 +264,9 @@ msgid ""
262264
" when class inheritance or an arbitrary :meth:`!__getattr__` hook were in "
263265
"use this could still be inaccurate."
264266
msgstr ""
267+
"在以前的 Python 版本中,没有一致的方法来发现对象支持的属性和方法。有一些非正式的约定,例如定义 :attr:`!__members__` 和 "
268+
":attr:`!__methods__` 属性,这些属性是名称列表,但扩展类型或类的作者往往不会去定义它们。你可以退而求其次,检查对象的 "
269+
":attr:`~object.__dict__` 属性,但在使用类继承或任意的 :meth:`!__getattr__` 钩子时,这仍然可能是不准确的。"
265270

266271
#: ../../whatsnew/2.2.rst:163
267272
msgid ""
@@ -320,6 +325,8 @@ msgid ""
320325
"methods are passed the class of the object, but not the object itself. "
321326
"Static and class methods are defined like this::"
322327
msgstr ""
328+
"对于方法,:meth:`!descriptor.__get__` "
329+
"返回一个可调用的临时对象,它将实例和要调用的方法封装在一起。这也是为什么现在可以实现静态方法和类方法的原因;它们有描述符,可以只封装方法,或者封装方法和类。作为对这些新方法类型的简要说明,静态方法不传递实例,因此类似于常规函数。类方法传递对象的类,但不传递对象本身。静态方法和类方法的定义如下:"
323330

324331
#: ../../whatsnew/2.2.rst:207
325332
msgid ""
@@ -524,6 +531,8 @@ msgid ""
524531
" more detail about the new features while still remaining quite easy to "
525532
"read."
526533
msgstr ""
534+
":ref:`descriptorhowto` 是由 Guido van Rossum "
535+
"编写的一篇详细教程,介绍了描述符功能。如果我的描述激起了你的兴趣,请继续阅读这篇教程,因为它更加详细地介绍了这些新功能,同时仍然保持了相当的易读性。"
527536

528537
#: ../../whatsnew/2.2.rst:403
529538
msgid ""
@@ -838,6 +847,9 @@ msgid ""
838847
"to raise an :exc:`OverflowError` will now return a long integer as their "
839848
"result. For example::"
840849
msgstr ""
850+
"Python 2.2 将根据需要将数值从短整数转换为长整数。'L' 后缀不再需要用于表示长整数字面量,因为现在编译器会自动选择适当的类型。(在未来的 "
851+
"2.x 版本的 Python 中,使用 'L' 后缀将被不鼓励,并在 Python 2.4 中触发警告,可能在 Python 3.0 "
852+
"中被移除。)许多以前会引发 :exc:`OverflowError` 的操作现在会返回一个长整数作为结果。例如:"
841853

842854
#: ../../whatsnew/2.2.rst:694
843855
msgid ""
@@ -947,10 +959,13 @@ msgid ""
947959
"division without a warning; the warning will be turned on by default in "
948960
"Python 2.3."
949961
msgstr ""
962+
"Python 2.2 支持一些命令行参数,用于测试代码是否能在除法语义改变的情况下正常工作。运行 Python 并使用 -Q warn "
963+
"选项时,当对两个整数应用除法时会发出警告。你可以利用这个功能找到受影响的代码并进行修复。默认情况下,Python 2.2 "
964+
"会执行经典除法而不会发出警告;在 Python 2.3 中,警告将默认开启。"
950965

951966
#: ../../whatsnew/2.2.rst:770
952967
msgid ":pep:`238` - Changing the Division Operator"
953-
msgstr ""
968+
msgstr ":pep:`238`:改变除法运算符"
954969

955970
#: ../../whatsnew/2.2.rst:771
956971
msgid ""
@@ -1314,6 +1329,8 @@ msgid ""
13141329
"write Python code, none of the changes described here will affect you very "
13151330
"much."
13161331
msgstr ""
1332+
"有些变化只会影响那些在 C 级别处理 Python 解释器的人,因为他们正在编写 Python "
1333+
"扩展模块、嵌入解释器或仅仅是在修改解释器本身。如果你只编写 Python 代码,这里描述的变化对你几乎没有影响。"
13171334

13181335
#: ../../whatsnew/2.2.rst:1056
13191336
msgid ""
@@ -1348,6 +1365,8 @@ msgid ""
13481365
"collection, so updating them for 2.2 should be considered fairly high "
13491366
"priority."
13501367
msgstr ""
1368+
"垃圾收集器的 C 级接口已经发生了变化,使得编写支持垃圾收集的扩展类型和调试函数误用变得更容易。各种函数的语义略有不同,因此需要重命名一系列函数。使用旧"
1369+
" API 的扩展仍然可以编译,但不会参与垃圾收集,因此应优先考虑将它们更新为 2.2 版本。"
13511370

13521371
#: ../../whatsnew/2.2.rst:1079
13531372
msgid ""
@@ -1356,7 +1375,7 @@ msgstr "要将一个扩展模块升级至新 API,请执行下列步骤:"
13561375

13571376
#: ../../whatsnew/2.2.rst:1081
13581377
msgid "Rename :c:macro:`!Py_TPFLAGS_GC` to :c:macro:`Py_TPFLAGS_HAVE_GC`."
1359-
msgstr ""
1378+
msgstr "将 :c:macro:`!Py_TPFLAGS_GC` 重命名为 :c:macro:`Py_TPFLAGS_HAVE_GC`。"
13601379

13611380
#: ../../whatsnew/2.2.rst:1083
13621381
msgid ""
@@ -1375,7 +1394,7 @@ msgstr ""
13751394

13761395
#: ../../whatsnew/2.2.rst:1089
13771396
msgid "Remove :c:macro:`!PyGC_HEAD_SIZE` from object size calculations."
1378-
msgstr ""
1397+
msgstr "从对象大小计算中移除 :c:macro:`!PyGC_HEAD_SIZE`。"
13791398

13801399
#: ../../whatsnew/2.2.rst:1091
13811400
msgid ""

0 commit comments

Comments
 (0)