Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 24ed14d

Browse files
github-actions[bot]mattwang44
authored andcommitted
sync with cpython 09c98e46
1 parent 93d231d commit 24ed14d

File tree

10 files changed

+593
-567
lines changed

10 files changed

+593
-567
lines changed

howto/logging-cookbook.po

Lines changed: 174 additions & 174 deletions
Large diffs are not rendered by default.

library/asyncio-protocol.po

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ msgid ""
77
msgstr ""
88
"Project-Id-Version: Python 3.12\n"
99
"Report-Msgid-Bugs-To: \n"
10-
"POT-Creation-Date: 2023-10-11 17:13+0000\n"
10+
"POT-Creation-Date: 2024-02-13 00:03+0000\n"
1111
"PO-Revision-Date: 2018-05-23 14:39+0000\n"
1212
"Last-Translator: Adrian Liaw <[email protected]>\n"
1313
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -568,8 +568,9 @@ msgstr ""
568568

569569
#: ../../library/asyncio-protocol.rst:420
570570
msgid ""
571-
"On POSIX systems, this method sends SIGTERM to the subprocess. On Windows, "
572-
"the Windows API function TerminateProcess() is called to stop the subprocess."
571+
"On POSIX systems, this method sends :py:const:`~signal.SIGTERM` to the "
572+
"subprocess. On Windows, the Windows API function :c:func:`!TerminateProcess` "
573+
"is called to stop the subprocess."
573574
msgstr ""
574575

575576
#: ../../library/asyncio-protocol.rst:424

library/asyncio-subprocess.po

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.12\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2023-07-22 00:04+0000\n"
11+
"POT-Creation-Date: 2024-02-13 00:03+0000\n"
1212
"PO-Revision-Date: 2018-05-23 14:39+0000\n"
1313
"Last-Translator: Adrian Liaw <[email protected]>\n"
1414
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -297,7 +297,7 @@ msgstr ""
297297

298298
#: ../../library/asyncio-subprocess.rst:243
299299
msgid ""
300-
"On Windows, :py:data:`SIGTERM` is an alias for :meth:`terminate`. "
300+
"On Windows, :py:const:`~signal.SIGTERM` is an alias for :meth:`terminate`. "
301301
"``CTRL_C_EVENT`` and ``CTRL_BREAK_EVENT`` can be sent to processes started "
302302
"with a *creationflags* parameter which includes ``CREATE_NEW_PROCESS_GROUP``."
303303
msgstr ""
@@ -308,13 +308,13 @@ msgstr ""
308308

309309
#: ../../library/asyncio-subprocess.rst:252
310310
msgid ""
311-
"On POSIX systems this method sends :py:const:`signal.SIGTERM` to the child "
311+
"On POSIX systems this method sends :py:const:`~signal.SIGTERM` to the child "
312312
"process."
313313
msgstr ""
314314

315315
#: ../../library/asyncio-subprocess.rst:255
316316
msgid ""
317-
"On Windows the Win32 API function :c:func:`TerminateProcess` is called to "
317+
"On Windows the Win32 API function :c:func:`!TerminateProcess` is called to "
318318
"stop the child process."
319319
msgstr ""
320320

library/msvcrt.po

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ msgid ""
77
msgstr ""
88
"Project-Id-Version: Python 3.12\n"
99
"Report-Msgid-Bugs-To: \n"
10-
"POT-Creation-Date: 2023-07-29 10:36+0000\n"
10+
"POT-Creation-Date: 2024-02-13 00:03+0000\n"
1111
"PO-Revision-Date: 2018-05-23 16:06+0000\n"
1212
"Last-Translator: Adrian Liaw <[email protected]>\n"
1313
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -184,5 +184,19 @@ msgstr ""
184184
#: ../../library/msvcrt.rst:159
185185
msgid ""
186186
"Force the :c:func:`malloc` heap to clean itself up and return unused blocks "
187-
"to the operating system. On failure, this raises :exc:`OSError`."
187+
"to the operating system. On failure, this raises :exc:`OSError`."
188+
msgstr ""
189+
190+
#: ../../library/msvcrt.rst:164
191+
msgid "The CRT Assembly version, from the :file:`crtassem.h` header file."
192+
msgstr ""
193+
194+
#: ../../library/msvcrt.rst:169
195+
msgid ""
196+
"The VC Assembly public key token, from the :file:`crtassem.h` header file."
197+
msgstr ""
198+
199+
#: ../../library/msvcrt.rst:174
200+
msgid ""
201+
"The Libraries Assembly name prefix, from the :file:`crtassem.h` header file."
188202
msgstr ""

library/multiprocessing.po

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ msgid ""
77
msgstr ""
88
"Project-Id-Version: Python 3.12\n"
99
"Report-Msgid-Bugs-To: \n"
10-
"POT-Creation-Date: 2023-10-24 00:03+0000\n"
10+
"POT-Creation-Date: 2024-02-13 00:03+0000\n"
1111
"PO-Revision-Date: 2018-05-23 16:06+0000\n"
1212
"Last-Translator: Adrian Liaw <[email protected]>\n"
1313
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -660,9 +660,9 @@ msgstr ""
660660

661661
#: ../../library/multiprocessing.rst:652
662662
msgid ""
663-
"Terminate the process. On POSIX this is done using the ``SIGTERM`` signal; "
664-
"on Windows :c:func:`TerminateProcess` is used. Note that exit handlers and "
665-
"finally clauses, etc., will not be executed."
663+
"Terminate the process. On POSIX this is done using the :py:const:`~signal."
664+
"SIGTERM` signal; on Windows :c:func:`!TerminateProcess` is used. Note that "
665+
"exit handlers and finally clauses, etc., will not be executed."
666666
msgstr ""
667667

668668
#: ../../library/multiprocessing.rst:656

library/subprocess.po

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ msgid ""
66
msgstr ""
77
"Project-Id-Version: Python 3.12\n"
88
"Report-Msgid-Bugs-To: \n"
9-
"POT-Creation-Date: 2024-02-03 00:03+0000\n"
9+
"POT-Creation-Date: 2024-02-13 00:03+0000\n"
1010
"PO-Revision-Date: 2018-05-23 16:11+0000\n"
1111
"Last-Translator: Adrian Liaw <[email protected]>\n"
1212
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -1088,9 +1088,9 @@ msgstr ""
10881088

10891089
#: ../../library/subprocess.rst:860
10901090
msgid ""
1091-
"Stop the child. On POSIX OSs the method sends SIGTERM to the child. On "
1092-
"Windows the Win32 API function :c:func:`TerminateProcess` is called to stop "
1093-
"the child."
1091+
"Stop the child. On POSIX OSs the method sends :py:const:`~signal.SIGTERM` to "
1092+
"the child. On Windows the Win32 API function :c:func:`!TerminateProcess` is "
1093+
"called to stop the child."
10941094
msgstr ""
10951095

10961096
#: ../../library/subprocess.rst:867

whatsnew/2.6.po

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ msgid ""
77
msgstr ""
88
"Project-Id-Version: Python 3.12\n"
99
"Report-Msgid-Bugs-To: \n"
10-
"POT-Creation-Date: 2024-02-05 00:03+0000\n"
10+
"POT-Creation-Date: 2024-02-13 00:03+0000\n"
1111
"PO-Revision-Date: 2018-05-23 16:20+0000\n"
1212
"Last-Translator: Adrian Liaw <[email protected]>\n"
1313
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -2693,11 +2693,12 @@ msgstr ""
26932693

26942694
#: ../../whatsnew/2.6.rst:2391
26952695
msgid ""
2696-
"The :class:`Popen` objects provided by the :mod:`subprocess` module now "
2697-
"have :meth:`terminate`, :meth:`kill`, and :meth:`send_signal` methods. On "
2698-
"Windows, :meth:`send_signal` only supports the :const:`SIGTERM` signal, and "
2699-
"all these methods are aliases for the Win32 API function :c:func:"
2700-
"`TerminateProcess`. (Contributed by Christian Heimes.)"
2696+
"The :class:`~subprocess.Popen` objects provided by the :mod:`subprocess` "
2697+
"module now have :meth:`~subprocess.Popen.terminate`, :meth:`~subprocess."
2698+
"Popen.kill`, and :meth:`~subprocess.Popen.send_signal` methods. On Windows, :"
2699+
"meth:`!send_signal` only supports the :py:const:`~signal.SIGTERM` signal, "
2700+
"and all these methods are aliases for the Win32 API function :c:func:`!"
2701+
"TerminateProcess`. (Contributed by Christian Heimes.)"
27012702
msgstr ""
27022703

27032704
#: ../../whatsnew/2.6.rst:2398

0 commit comments

Comments
 (0)