@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version :Python 3.12\n "
1313"Report-Msgid-Bugs-To :\n "
14- "POT-Creation-Date :2025-03-07 14:53 +0000\n "
14+ "POT-Creation-Date :2025-03-21 14:55 +0000\n "
1515"PO-Revision-Date :2024-05-11 00:32+0000\n "
1616"Last-Translator :Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n "
1717"Language-Team :Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -48,6 +48,12 @@ msgid ""
4848"tp_basicsize` field of the type object."
4949msgstr ""
5050
51+ msgid ""
52+ "Note that this function is unsuitable if *typeobj* has :c:macro:"
53+ "`Py_TPFLAGS_HAVE_GC` set. For such objects, use :c:func:`PyObject_GC_New` "
54+ "instead."
55+ msgstr ""
56+
5157msgid ""
5258"Allocate a new Python object using the C structure type *TYPE* and the "
5359"Python type object *typeobj* (``PyTypeObject*``). Fields not defined by the "
@@ -60,6 +66,12 @@ msgid ""
6066"management efficiency."
6167msgstr ""
6268
69+ msgid ""
70+ "Note that this function is unsuitable if *typeobj* has :c:macro:"
71+ "`Py_TPFLAGS_HAVE_GC` set. For such objects, use :c:func:`PyObject_GC_NewVar` "
72+ "instead."
73+ msgstr ""
74+
6375msgid ""
6476"Releases memory allocated to an object using :c:macro:`PyObject_New` or :c:"
6577"macro:`PyObject_NewVar`. This is normally called from the :c:member:"