@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.14\n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2025-10-25 14:12+0000\n "
14+ "POT-Creation-Date : 2025-11-15 14:12+0000\n "
1515"PO-Revision-Date : 2025-09-16 00:00+0000\n "
1616"Last-Translator : python-doc bot, 2025\n "
1717"Language-Team : Swedish (https://app.transifex.com/python-doc/teams/5390/ "
@@ -123,6 +123,27 @@ msgid ""
123123"func:`!signal`. Do not call those functions directly!"
124124msgstr ""
125125
126+ msgid "Check if a :c:macro:`!SIGINT` signal has been received."
127+ msgstr ""
128+
129+ msgid ""
130+ "Returns ``1`` if a :c:macro:`!SIGINT` has occurred and clears the signal "
131+ "flag, or ``0`` otherwise."
132+ msgstr ""
133+
134+ msgid ""
135+ "In most cases, you should prefer :c:func:`PyErr_CheckSignals` over this "
136+ "function. :c:func:`!PyErr_CheckSignals` invokes the appropriate signal "
137+ "handlers for all pending signals, allowing Python code to handle the signal "
138+ "properly. This function only detects :c:macro:`!SIGINT` and does not invoke "
139+ "any Python signal handlers."
140+ msgstr ""
141+
142+ msgid ""
143+ "This function is async-signal-safe and this function cannot fail. The caller "
144+ "must hold an :term:`attached thread state`."
145+ msgstr ""
146+
126147msgid ""
127148"This function should not be called directly: use the :c:type:`PyConfig` API "
128149"with the :c:func:`PyConfig_SetBytesString` function which ensures that :ref:"
0 commit comments