7
7
msgstr ""
8
8
"Project-Id-Version :Python 3.12\n "
9
9
"Report-Msgid-Bugs-To :\n "
10
- "POT-Creation-Date :2024-01-18 00:03+0000\n "
10
+ "POT-Creation-Date :2024-01-23 00:03+0000\n "
11
11
"PO-Revision-Date :2018-05-23 16:17+0000\n "
12
12
"Last-Translator :Adrian Liaw <adrianliaw2000@gmail.com>\n "
13
13
"Language-Team :Chinese - TAIWAN (https://github.com/python/python-docs-zh- "
@@ -1011,8 +1011,8 @@ msgstr ""
1011
1011
msgid ""
1012
1012
"The primary must evaluate to a callable object (user-defined functions, "
1013
1013
"built-in functions, methods of built-in objects, class objects, methods of "
1014
- "class instances, and all objects having a :meth:`__call__` method are "
1015
- "callable). All argument expressions are evaluated before the call is "
1014
+ "class instances, and all objects having a :meth:`~object. __call__` method "
1015
+ "are callable). All argument expressions are evaluated before the call is "
1016
1016
"attempted. Please refer to section :ref:`function` for the syntax of "
1017
1017
"formal :term:`parameter` lists."
1018
1018
msgstr ""
@@ -1182,8 +1182,8 @@ msgstr ""
1182
1182
1183
1183
#: ../../reference/expressions.rst:1155
1184
1184
msgid ""
1185
- "The class must define a :meth:`__call__` method; the effect is then the same "
1186
- "as if that method was called."
1185
+ "The class must define a :meth:`~object. __call__` method; the effect is then "
1186
+ "the same as if that method was called."
1187
1187
msgstr ""
1188
1188
1189
1189
#: ../../reference/expressions.rst:1163 ../../reference/expressions.rst:1945
@@ -1238,7 +1238,8 @@ msgstr ""
1238
1238
1239
1239
#: ../../reference/expressions.rst:1207
1240
1240
msgid ""
1241
- "This operation can be customized using the special :meth:`__pow__` method."
1241
+ "This operation can be customized using the special :meth:`~object.__pow__` "
1242
+ "method."
1242
1243
msgstr ""
1243
1244
1244
1245
#: ../../reference/expressions.rst:1212
@@ -1252,22 +1253,22 @@ msgstr ""
1252
1253
#: ../../reference/expressions.rst:1229
1253
1254
msgid ""
1254
1255
"The unary ``-`` (minus) operator yields the negation of its numeric "
1255
- "argument; the operation can be overridden with the :meth:`__neg__` special "
1256
- "method."
1256
+ "argument; the operation can be overridden with the :meth:`~object. __neg__` "
1257
+ "special method."
1257
1258
msgstr ""
1258
1259
1259
1260
#: ../../reference/expressions.rst:1237
1260
1261
msgid ""
1261
1262
"The unary ``+`` (plus) operator yields its numeric argument unchanged; the "
1262
- "operation can be overridden with the :meth:`__pos__` special method."
1263
+ "operation can be overridden with the :meth:`~object. __pos__` special method."
1263
1264
msgstr ""
1264
1265
1265
1266
#: ../../reference/expressions.rst:1244
1266
1267
msgid ""
1267
1268
"The unary ``~`` (invert) operator yields the bitwise inversion of its "
1268
1269
"integer argument. The bitwise inversion of ``x`` is defined as ``-(x+1)``. "
1269
1270
"It only applies to integral numbers or to custom objects that override the :"
1270
- "meth:`__invert__` special method."
1271
+ "meth:`~object. __invert__` special method."
1271
1272
msgstr ""
1272
1273
1273
1274
#: ../../reference/expressions.rst:1253
@@ -1300,8 +1301,8 @@ msgstr ""
1300
1301
1301
1302
#: ../../reference/expressions.rst:1285
1302
1303
msgid ""
1303
- "This operation can be customized using the special :meth:`__mul__`and :meth: "
1304
- "` __rmul__` methods."
1304
+ "This operation can be customized using the special :meth:`~object. __mul__` "
1305
+ "and :meth:`~object. __rmul__` methods."
1305
1306
msgstr ""
1306
1307
1307
1308
#: ../../reference/expressions.rst:1292
@@ -1322,8 +1323,8 @@ msgstr ""
1322
1323
1323
1324
#: ../../reference/expressions.rst:1310
1324
1325
msgid ""
1325
- "This operation can be customized using the special :meth:`__truediv__` and : "
1326
- "meth:`__floordiv__` methods."
1326
+ "This operation can be customized using the special :meth:`~object. "
1327
+ "__truediv__` and : meth:`~object. __floordiv__` methods."
1327
1328
msgstr ""
1328
1329
1329
1330
#: ../../reference/expressions.rst:1317
@@ -1357,8 +1358,8 @@ msgstr ""
1357
1358
1358
1359
#: ../../reference/expressions.rst:1336
1359
1360
msgid ""
1360
- "The *modulo* operation can be customized using the special :meth:`__mod__` "
1361
- "method."
1361
+ "The *modulo* operation can be customized using the special :meth:`~object. "
1362
+ "__mod__` method."
1362
1363
msgstr ""
1363
1364
1364
1365
#: ../../reference/expressions.rst:1338
@@ -1378,8 +1379,8 @@ msgstr ""
1378
1379
1379
1380
#: ../../reference/expressions.rst:1352
1380
1381
msgid ""
1381
- "This operation can be customized using the special :meth:`__add__`and :meth: "
1382
- "` __radd__` methods."
1382
+ "This operation can be customized using the special :meth:`~object. __add__` "
1383
+ "and :meth:`~object. __radd__` methods."
1383
1384
msgstr ""
1384
1385
1385
1386
#: ../../reference/expressions.rst:1360
@@ -1390,7 +1391,8 @@ msgstr ""
1390
1391
1391
1392
#: ../../reference/expressions.rst:1363
1392
1393
msgid ""
1393
- "This operation can be customized using the special :meth:`__sub__` method."
1394
+ "This operation can be customized using the special :meth:`~object.__sub__` "
1395
+ "method."
1394
1396
msgstr ""
1395
1397
1396
1398
#: ../../reference/expressions.rst:1369
@@ -1410,8 +1412,8 @@ msgstr ""
1410
1412
1411
1413
#: ../../reference/expressions.rst:1384
1412
1414
msgid ""
1413
- "This operation can be customized using the special :meth:`__lshift__` and : "
1414
- "meth:`__rshift__` methods."
1415
+ "This operation can be customized using the special :meth:`~object. "
1416
+ "__lshift__` and : meth:`~object. __rshift__` methods."
1415
1417
msgstr ""
1416
1418
1417
1419
#: ../../reference/expressions.rst:1389
@@ -1431,22 +1433,22 @@ msgstr ""
1431
1433
#: ../../reference/expressions.rst:1411
1432
1434
msgid ""
1433
1435
"The ``&`` operator yields the bitwise AND of its arguments, which must be "
1434
- "integers or one of them must be a custom object overriding :meth:`__and__` "
1435
- "or :meth:`__rand__` special methods."
1436
+ "integers or one of them must be a custom object overriding :meth:`~object. "
1437
+ "__and__` or :meth:`~object. __rand__` special methods."
1436
1438
msgstr ""
1437
1439
1438
1440
#: ../../reference/expressions.rst:1420
1439
1441
msgid ""
1440
1442
"The ``^`` operator yields the bitwise XOR (exclusive OR) of its arguments, "
1441
1443
"which must be integers or one of them must be a custom object overriding :"
1442
- "meth:`__xor__` or :meth:`__rxor__` special methods."
1444
+ "meth:`~object. __xor__` or :meth:`~object. __rxor__` special methods."
1443
1445
msgstr ""
1444
1446
1445
1447
#: ../../reference/expressions.rst:1429
1446
1448
msgid ""
1447
1449
"The ``|`` operator yields the bitwise (inclusive) OR of its arguments, which "
1448
1450
"must be integers or one of them must be a custom object overriding :meth:"
1449
- "`__or__` or :meth:`__ror__` special methods."
1451
+ "`~object. __or__` or :meth:`~object. __ror__` special methods."
1450
1452
msgstr ""
1451
1453
1452
1454
#: ../../reference/expressions.rst:1437
@@ -1518,7 +1520,7 @@ msgid ""
1518
1520
"Because all types are (direct or indirect) subtypes of :class:`object`, they "
1519
1521
"inherit the default comparison behavior from :class:`object`. Types can "
1520
1522
"customize their comparison behavior by implementing :dfn:`rich comparison "
1521
- "methods` like :meth:`__lt__`, described in :ref:`customization`."
1523
+ "methods` like :meth:`~object. __lt__`, described in :ref:`customization`."
1522
1524
msgstr ""
1523
1525
1524
1526
#: ../../reference/expressions.rst:1501
@@ -1789,18 +1791,18 @@ msgstr ""
1789
1791
1790
1792
#: ../../reference/expressions.rst:1662
1791
1793
msgid ""
1792
- "For user-defined classes which define the :meth:`__contains__` method, ``x "
1793
- "in y`` returns ``True`` if ``y.__contains__(x)`` returns a true value, and "
1794
- "``False`` otherwise."
1794
+ "For user-defined classes which define the :meth:`~object. __contains__` "
1795
+ "method, ``x in y`` returns ``True`` if ``y.__contains__(x)`` returns a true "
1796
+ "value, and ``False`` otherwise."
1795
1797
msgstr ""
1796
1798
1797
1799
#: ../../reference/expressions.rst:1666
1798
1800
msgid ""
1799
- "For user-defined classes which do not define :meth:`__contains__` but do "
1800
- "define :meth:`__iter__`, ``x in y`` is ``True`` if some value ``z``, for "
1801
- "which the expression ``x is z or x == z`` is true, is produced while "
1802
- "iterating over ``y``. If an exception is raised during the iteration, it is "
1803
- "as if :keyword:`in` raised that exception."
1801
+ "For user-defined classes which do not define :meth:`~object. __contains__` "
1802
+ "but do define :meth:`~object. __iter__`, ``x in y`` is ``True`` if some value "
1803
+ "``z``, for which the expression ``x is z or x == z`` is true, is produced "
1804
+ "while iterating over ``y``. If an exception is raised during the iteration, "
1805
+ "it is as if :keyword:`in` raised that exception."
1804
1806
msgstr ""
1805
1807
1806
1808
#: ../../reference/expressions.rst:1672