|
1 | 1 | # SOME DESCRIPTIVE TITLE. |
2 | | -# Copyright (C) 2001-2024, Python Software Foundation |
| 2 | +# Copyright (C) 2001 Python Software Foundation |
3 | 3 | # This file is distributed under the same license as the Python package. |
4 | 4 | # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. |
5 | 5 | # |
|
16 | 16 | #, fuzzy |
17 | 17 | msgid "" |
18 | 18 | msgstr "" |
19 | | -"Project-Id-Version: Python 3.13\n" |
| 19 | +"Project-Id-Version: Python 3.14\n" |
20 | 20 | "Report-Msgid-Bugs-To: \n" |
21 | | -"POT-Creation-Date: 2024-10-11 14:17+0000\n" |
| 21 | +"POT-Creation-Date: 2025-05-09 14:19+0000\n" |
22 | 22 | "PO-Revision-Date: 2021-06-28 00:47+0000\n" |
23 | 23 | "Last-Translator: Freesand Leo <yuqinju@163.com>, 2024\n" |
24 | 24 | "Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n" |
@@ -351,6 +351,29 @@ msgstr "" |
351 | 351 | " 的 :term:`strong reference` (即递减其引用计数)。" |
352 | 352 |
|
353 | 353 | #: ../../c-api/bytes.rst:194 |
| 354 | +msgid "Similar to ``sep.join(iterable)`` in Python." |
| 355 | +msgstr "" |
| 356 | + |
| 357 | +#: ../../c-api/bytes.rst:196 |
| 358 | +msgid "" |
| 359 | +"*sep* must be Python :class:`bytes` object. (Note that " |
| 360 | +":c:func:`PyUnicode_Join` accepts ``NULL`` separator and treats it as a " |
| 361 | +"space, whereas :c:func:`PyBytes_Join` doesn't accept ``NULL`` separator.)" |
| 362 | +msgstr "" |
| 363 | + |
| 364 | +#: ../../c-api/bytes.rst:201 |
| 365 | +msgid "" |
| 366 | +"*iterable* must be an iterable object yielding objects that implement the " |
| 367 | +":ref:`buffer protocol <bufferobjects>`." |
| 368 | +msgstr "" |
| 369 | + |
| 370 | +#: ../../c-api/bytes.rst:204 |
| 371 | +msgid "" |
| 372 | +"On success, return a new :class:`bytes` object. On error, set an exception " |
| 373 | +"and return ``NULL``." |
| 374 | +msgstr "" |
| 375 | + |
| 376 | +#: ../../c-api/bytes.rst:212 |
354 | 377 | msgid "" |
355 | 378 | "Resize a bytes object. *newsize* will be the new length of the bytes object." |
356 | 379 | " You can think of it as creating a new bytes object and destroying the old " |
|
0 commit comments