Skip to content

Commit 1c88fef

Browse files
authored
Merge branch '3.12' into translate-asyncio-eventloop
2 parents e876bde + bdf89b3 commit 1c88fef

File tree

12 files changed

+623
-150
lines changed

12 files changed

+623
-150
lines changed

faq/extending.po

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ msgstr "我可以在 C++ 中建立自己的函式嗎?"
5151
#: ../../faq/extending.rst:28
5252
#, fuzzy
5353
msgid ""
54-
"Yes, using the C compatibility features found in C++. Place ``extern "
55-
"\"C\" { ... }`` around the Python include files and put ``extern \"C\"`` "
56-
"before each function that is going to be called by the Python interpreter. "
57-
"Global or static C++ objects with constructors are probably not a good idea."
54+
"Yes, using the C compatibility features found in C++. Place ``extern \"C\" "
55+
"{ ... }`` around the Python include files and put ``extern \"C\"`` before "
56+
"each function that is going to be called by the Python interpreter. Global "
57+
"or static C++ objects with constructors are probably not a good idea."
5858
msgstr ""
5959
"是的,使用 C++ 中的 C 相容性功能。將 ``extern \"C\" { ... }`` 放在 Python 包"
6060
"含檔案周圍,並將 ``extern \"C\"`` 放在每個將由 Python 直譯器呼叫的函式之前。"

howto/regex.po

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -922,13 +922,13 @@ msgid ""
922922
"letters, too. Full Unicode matching also works unless the :const:`ASCII` "
923923
"flag is used to disable non-ASCII matches. When the Unicode patterns ``[a-"
924924
"z]`` or ``[A-Z]`` are used in combination with the :const:`IGNORECASE` flag, "
925-
"they will match the 52 ASCII letters and 4 additional non-ASCII letters: "
926-
"'İ' (U+0130, Latin capital letter I with dot above), 'ı' (U+0131, Latin "
927-
"small letter dotless i), 'ſ' (U+017F, Latin small letter long s) and "
928-
"'K' (U+212A, Kelvin sign). ``Spam`` will match ``'Spam'``, ``'spam'``, "
929-
"``'spAM'``, or ``'ſpam'`` (the latter is matched only in Unicode mode). This "
930-
"lowercasing doesn't take the current locale into account; it will if you "
931-
"also set the :const:`LOCALE` flag."
925+
"they will match the 52 ASCII letters and 4 additional non-ASCII letters: 'İ' "
926+
"(U+0130, Latin capital letter I with dot above), 'ı' (U+0131, Latin small "
927+
"letter dotless i), 'ſ' (U+017F, Latin small letter long s) and 'K' (U+212A, "
928+
"Kelvin sign). ``Spam`` will match ``'Spam'``, ``'spam'``, ``'spAM'``, or "
929+
"``'ſpam'`` (the latter is matched only in Unicode mode). This lowercasing "
930+
"doesn't take the current locale into account; it will if you also set the :"
931+
"const:`LOCALE` flag."
932932
msgstr ""
933933

934934
#: ../../howto/regex.rst:581

0 commit comments

Comments
 (0)