@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.12\n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2023-06-30 14:13+0000\n "
14+ "POT-Creation-Date : 2023-07-28 14:13+0000\n "
1515"PO-Revision-Date : 2021-06-28 00:47+0000\n "
1616"Last-Translator : Waldemar Stoczkowski, 2023\n "
1717"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -41,26 +41,27 @@ msgstr ""
4141
4242msgid ""
4343"Allocate a new Python object using the C structure type *TYPE* and the "
44- "Python type object *type*. Fields not defined by the Python object header "
45- "are not initialized; the object's reference count will be one. The size of "
46- "the memory allocation is determined from the :c:member:`~PyTypeObject. "
47- "tp_basicsize` field of the type object."
44+ "Python type object *typeobj* (``PyTypeObject*``). Fields not defined by the "
45+ "Python object header are not initialized; the object's reference count will "
46+ "be one. The size of the memory allocation is determined from the :c:member:"
47+ "`~PyTypeObject. tp_basicsize` field of the type object."
4848msgstr ""
4949
5050msgid ""
5151"Allocate a new Python object using the C structure type *TYPE* and the "
52- "Python type object *type*. Fields not defined by the Python object header "
53- "are not initialized. The allocated memory allows for the *TYPE* structure "
54- "plus *size* fields of the size given by the :c:member:`~PyTypeObject."
55- "tp_itemsize` field of *type*. This is useful for implementing objects like "
56- "tuples, which are able to determine their size at construction time. "
57- "Embedding the array of fields into the same allocation decreases the number "
58- "of allocations, improving the memory management efficiency."
52+ "Python type object *typeobj* (``PyTypeObject*``). Fields not defined by the "
53+ "Python object header are not initialized. The allocated memory allows for "
54+ "the *TYPE* structure plus *size* (``Py_ssize_t``) fields of the size given "
55+ "by the :c:member:`~PyTypeObject.tp_itemsize` field of *typeobj*. This is "
56+ "useful for implementing objects like tuples, which are able to determine "
57+ "their size at construction time. Embedding the array of fields into the "
58+ "same allocation decreases the number of allocations, improving the memory "
59+ "management efficiency."
5960msgstr ""
6061
6162msgid ""
62- "Releases memory allocated to an object using :c:func :`PyObject_New` or :c:"
63- "func :`PyObject_NewVar`. This is normally called from the :c:member:"
63+ "Releases memory allocated to an object using :c:macro :`PyObject_New` or :c:"
64+ "macro :`PyObject_NewVar`. This is normally called from the :c:member:"
6465"`~PyTypeObject.tp_dealloc` handler specified in the object's type. The "
6566"fields of the object should not be accessed after this call as the memory is "
6667"no longer a valid Python object."
0 commit comments