Skip to content

Commit 962940e

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 97a682e commit 962940e

433 files changed

Lines changed: 366711 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

c-api/allocation.po

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
# SOME DESCRIPTIVE TITLE.
2+
# Copyright (C) 2001 Python Software Foundation
3+
# This file is distributed under the same license as the Python package.
4+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5+
#
6+
#, fuzzy
7+
msgid ""
8+
msgstr ""
9+
"Project-Id-Version: Python 3.14\n"
10+
"Report-Msgid-Bugs-To: \n"
11+
"POT-Creation-Date: 2025-05-16 14:19+0000\n"
12+
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
13+
"Language-Team: German (https://app.transifex.com/python-doc/teams/5390/de/)\n"
14+
"MIME-Version: 1.0\n"
15+
"Content-Type: text/plain; charset=UTF-8\n"
16+
"Content-Transfer-Encoding: 8bit\n"
17+
"Language: de\n"
18+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
19+
20+
msgid "Allocating Objects on the Heap"
21+
msgstr ""
22+
23+
msgid ""
24+
"Initialize a newly allocated object *op* with its type and initial "
25+
"reference. Returns the initialized object. Other fields of the object are "
26+
"not affected."
27+
msgstr ""
28+
29+
msgid ""
30+
"This does everything :c:func:`PyObject_Init` does, and also initializes the "
31+
"length information for a variable-size object."
32+
msgstr ""
33+
34+
msgid ""
35+
"Allocate a new Python object using the C structure type *TYPE* and the "
36+
"Python type object *typeobj* (``PyTypeObject*``). Fields not defined by the "
37+
"Python object header are not initialized. The caller will own the only "
38+
"reference to the object (i.e. its reference count will be one). The size of "
39+
"the memory allocation is determined from the :c:member:`~PyTypeObject."
40+
"tp_basicsize` field of the type object."
41+
msgstr ""
42+
43+
msgid ""
44+
"Note that this function is unsuitable if *typeobj* has :c:macro:"
45+
"`Py_TPFLAGS_HAVE_GC` set. For such objects, use :c:func:`PyObject_GC_New` "
46+
"instead."
47+
msgstr ""
48+
49+
msgid ""
50+
"Allocate a new Python object using the C structure type *TYPE* and the "
51+
"Python type object *typeobj* (``PyTypeObject*``). Fields not defined by the "
52+
"Python object header are not initialized. The allocated memory allows for "
53+
"the *TYPE* structure plus *size* (``Py_ssize_t``) fields of the size given "
54+
"by the :c:member:`~PyTypeObject.tp_itemsize` field of *typeobj*. This is "
55+
"useful for implementing objects like tuples, which are able to determine "
56+
"their size at construction time. Embedding the array of fields into the "
57+
"same allocation decreases the number of allocations, improving the memory "
58+
"management efficiency."
59+
msgstr ""
60+
61+
msgid ""
62+
"Note that this function is unsuitable if *typeobj* has :c:macro:"
63+
"`Py_TPFLAGS_HAVE_GC` set. For such objects, use :c:func:`PyObject_GC_NewVar` "
64+
"instead."
65+
msgstr ""
66+
67+
msgid "Same as :c:func:`PyObject_Free`."
68+
msgstr ""
69+
70+
msgid ""
71+
"Object which is visible in Python as ``None``. This should only be accessed "
72+
"using the :c:macro:`Py_None` macro, which evaluates to a pointer to this "
73+
"object."
74+
msgstr ""
75+
76+
msgid ":c:func:`PyModule_Create`"
77+
msgstr ""
78+
79+
msgid "To allocate and create extension modules."
80+
msgstr ""

0 commit comments

Comments
 (0)