@@ -12,7 +12,7 @@ msgid ""
1212msgstr ""
1313"Project-Id-Version : Python 3.11\n "
1414"Report-Msgid-Bugs-To : \n "
15- "POT-Creation-Date : 2023-06-30 14:41 +0000\n "
15+ "POT-Creation-Date : 2023-07-28 14:44 +0000\n "
1616"PO-Revision-Date : 2023-05-24 02:08+0000\n "
1717"Last-Translator : Waldemar Stoczkowski, 2023\n "
1818"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -44,26 +44,27 @@ msgstr ""
4444
4545msgid ""
4646"Allocate a new Python object using the C structure type *TYPE* and the "
47- "Python type object *type*. Fields not defined by the Python object header "
48- "are not initialized; the object's reference count will be one. The size of "
49- "the memory allocation is determined from the :c:member:`~PyTypeObject. "
50- "tp_basicsize` field of the type object."
47+ "Python type object *typeobj* (``PyTypeObject*``). Fields not defined by the "
48+ "Python object header are not initialized; the object's reference count will "
49+ "be one. The size of the memory allocation is determined from the :c:member:"
50+ "`~PyTypeObject. tp_basicsize` field of the type object."
5151msgstr ""
5252
5353msgid ""
5454"Allocate a new Python object using the C structure type *TYPE* and the "
55- "Python type object *type*. Fields not defined by the Python object header "
56- "are not initialized. The allocated memory allows for the *TYPE* structure "
57- "plus *size* fields of the size given by the :c:member:`~PyTypeObject."
58- "tp_itemsize` field of *type*. This is useful for implementing objects like "
59- "tuples, which are able to determine their size at construction time. "
60- "Embedding the array of fields into the same allocation decreases the number "
61- "of allocations, improving the memory management efficiency."
55+ "Python type object *typeobj* (``PyTypeObject*``). Fields not defined by the "
56+ "Python object header are not initialized. The allocated memory allows for "
57+ "the *TYPE* structure plus *size* (``Py_ssize_t``) fields of the size given "
58+ "by the :c:member:`~PyTypeObject.tp_itemsize` field of *typeobj*. This is "
59+ "useful for implementing objects like tuples, which are able to determine "
60+ "their size at construction time. Embedding the array of fields into the "
61+ "same allocation decreases the number of allocations, improving the memory "
62+ "management efficiency."
6263msgstr ""
6364
6465msgid ""
65- "Releases memory allocated to an object using :c:func :`PyObject_New` or :c:"
66- "func :`PyObject_NewVar`. This is normally called from the :c:member:"
66+ "Releases memory allocated to an object using :c:macro :`PyObject_New` or :c:"
67+ "macro :`PyObject_NewVar`. This is normally called from the :c:member:"
6768"`~PyTypeObject.tp_dealloc` handler specified in the object's type. The "
6869"fields of the object should not be accessed after this call as the memory is "
6970"no longer a valid Python object."
0 commit comments