@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.11\n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2023-07-28 14:44 +0000\n "
14+ "POT-Creation-Date : 2023-08-11 14:43 +0000\n "
1515"PO-Revision-Date : 2023-05-24 02:08+0000\n "
1616"Last-Translator : Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n "
1717"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -552,8 +552,9 @@ msgstr ""
552552
553553msgid ""
554554"Store a Python object (without any conversion) in a C object pointer. The C "
555- "program thus receives the actual object that was passed. The object's "
556- "reference count is not increased. The pointer stored is not ``NULL``."
555+ "program thus receives the actual object that was passed. A new :term:"
556+ "`strong reference` to the object is not created (i.e. its reference count is "
557+ "not increased). The pointer stored is not ``NULL``."
557558msgstr ""
558559
559560msgid "``O!`` (object) [*typeobject*, PyObject \\ *]"
@@ -680,11 +681,9 @@ msgstr ""
680681
681682msgid ""
682683"Note that any Python object references which are provided to the caller are "
683- "*borrowed* references; do not decrement their reference count!"
684+ "*borrowed* references; do not release them (i.e. do not decrement their "
685+ "reference count)!"
684686msgstr ""
685- "Zauważ, że dowolne odniesienia do przedmiotów języka pytonowskiego, które są "
686- "dostarczone wołającemu są *pożyczonymi* odniesieniami; nie zmniejszaj liczby "
687- "tych odniesień."
688687
689688msgid ""
690689"Additional arguments passed to these functions must be addresses of "
@@ -957,12 +956,12 @@ msgid "Convert a C :c:type:`Py_complex` structure to a Python complex number."
957956msgstr ""
958957
959958msgid ""
960- "Pass a Python object untouched (except for its reference count, which is "
961- "incremented by one). If the object passed in is a ``NULL`` pointer, it is "
962- "assumed that this was caused because the call producing the argument found "
963- "an error and set an exception. Therefore, :c:func:`Py_BuildValue` will "
964- "return ``NULL`` but won't raise an exception. If no exception has been "
965- "raised yet, :exc:`SystemError` is set."
959+ "Pass a Python object untouched but create a new :term:`strong reference` to "
960+ "it (i.e. its reference count is incremented by one). If the object passed in "
961+ "is a ``NULL`` pointer, it is assumed that this was caused because the call "
962+ "producing the argument found an error and set an exception. Therefore, :c:"
963+ "func:`Py_BuildValue` will return ``NULL`` but won't raise an exception. If "
964+ "no exception has been raised yet, :exc:`SystemError` is set."
966965msgstr ""
967966
968967msgid "``S`` (object) [PyObject \\ *]"
@@ -975,9 +974,9 @@ msgid "``N`` (object) [PyObject \\*]"
975974msgstr ""
976975
977976msgid ""
978- "Same as ``O``, except it doesn't increment the reference count on the "
979- "object. Useful when the object is created by a call to an object constructor "
980- "in the argument list."
977+ "Same as ``O``, except it doesn't create a new :term:`strong reference`. "
978+ "Useful when the object is created by a call to an object constructor in the "
979+ "argument list."
981980msgstr ""
982981
983982msgid ""
0 commit comments