@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version :Python 3.13\n "
1313"Report-Msgid-Bugs-To :\n "
14- "POT-Creation-Date :2025-10-25 15:01 +0000\n "
14+ "POT-Creation-Date :2025-11-07 15:30 +0000\n "
1515"PO-Revision-Date :2025-09-15 01:03+0000\n "
1616"Last-Translator :python-doc bot, 2025\n "
1717"Language-Team :Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -148,6 +148,14 @@ msgid ""
148148"most-significant bit is not a sign bit. Flags other than endian are ignored."
149149msgstr ""
150150
151+ msgid "Macro for creating a Python integer from a process identifier."
152+ msgstr ""
153+
154+ msgid ""
155+ "This can be defined as an alias to :c:func:`PyLong_FromLong` or :c:func:"
156+ "`PyLong_FromLongLong`, depending on the size of the system's PID type."
157+ msgstr ""
158+
151159msgid ""
152160"Return a C :c:expr:`long` representation of *obj*. If *obj* is not an "
153161"instance of :c:type:`PyLongObject`, first call its :meth:`~object.__index__` "
@@ -323,6 +331,15 @@ msgid ""
323331"Returns ``NULL`` on error. Use :c:func:`PyErr_Occurred` to disambiguate."
324332msgstr ""
325333
334+ msgid "Macro for converting a Python integer into a process identifier."
335+ msgstr ""
336+
337+ msgid ""
338+ "This can be defined as an alias to :c:func:`PyLong_AsLong`, :c:func:"
339+ "`PyLong_FromLongLong`, or :c:func:`PyLong_AsInt`, depending on the size of "
340+ "the system's PID type."
341+ msgstr ""
342+
326343msgid ""
327344"Copy the Python integer value *pylong* to a native *buffer* of size "
328345"*n_bytes*. The *flags* can be set to ``-1`` to behave similarly to a C cast, "