Home
About
Blog
Products
Forum
Support
Contact
Sunbelt Computer Software
PL/B Language Development and Support
Home
About
Blog
Products
Forum
Support
Contact
python-docs-fa/c-api/allocation.po at sphinx-rtl-debug · python/python-docs-fa · GitHub
Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
python
/
python-docs-fa
Public
Notifications
You must be signed in to change notification settings
Fork
12
Star
53
Code
Issues
0
Pull requests
2
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Files
Expand file tree
sphinx-rtl-debug
Breadcrumbs
python-docs-fa
/
c-api
/
allocation.po
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
212 lines (181 loc) · 7.25 KB
sphinx-rtl-debug
Breadcrumbs
python-docs-fa
/
c-api
/
allocation.po
Copy path
Top
File metadata and controls
Code
Blame
212 lines (181 loc) · 7.25 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
#
SOME DESCRIPTIVE TITLE.
#
Copyright (C) 2001 Python Software Foundation
#
This file is distributed under the same license as the Python package.
#
FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#
Translators:
#
Mehdi Batani, 2025
#
AmirHossein SAMIMI, 2025
#
khosro azimi, 2025
#
Ariyan Bolandi, 2025
#
Danial Behzadi <dani.behzi@ubuntu.com>, 2025
#
Benyamin Bentamin, 2025
#
Rafael Fontenelle <rffontenelle@gmail.com>, 2025
#
#,
fuzzy
msgid ""
msgstr ""
"
Project-Id-Version
:
Python 3.14\n
"
"
Report-Msgid-Bugs-To
:
\n
"
"
POT-Creation-Date
:
2025-07-11 14:21+0000\n
"
"
PO-Revision-Date
:
2021-06-28 00:47+0000\n
"
"
Last-Translator
:
Rafael Fontenelle <rffontenelle@gmail.com>, 2025\n
"
"
Language-Team
:
Persian (https://app.transifex.com/python-doc/teams/5390/
"
"
fa/)\n
"
"
MIME-Version
:
1.0\n
"
"
Content-Type
:
text/plain; charset=UTF-8\n
"
"
Content-Transfer-Encoding
:
8bit\n
"
"
Language
:
fa\n
"
"
Plural-Forms
:
nplurals=2; plural=(n > 1);\n
"
#:
../../c-api/allocation.rst:6
msgid
"Allocating Objects on the Heap"
msgstr
"تخصیص اشیاء روی پشته"
#:
../../c-api/allocation.rst:17
msgid
""
"Initialize a newly allocated object *op* with its type and initial "
"reference. Returns the initialized object. Other fields of the object are "
"not initialized. Despite its name, this function is unrelated to the "
"object's :meth:`~object.__init__` method (:c:member:`~PyTypeObject.tp_init` "
"slot). Specifically, this function does **not** call the object's :meth:`!"
"__init__` method."
msgstr
""
#:
../../c-api/allocation.rst:24
msgid
""
"In general, consider this function to be a low-level routine. Use :c:member:"
"`~PyTypeObject.tp_alloc` where possible. For implementing :c:member:`!"
"tp_alloc` for your type, prefer :c:func:`PyType_GenericAlloc` or :c:func:"
"`PyObject_New`."
msgstr
""
#:
../../c-api/allocation.rst:31
msgid
""
"This function only initializes the object's memory corresponding to the "
"initial :c:type:`PyObject` structure. It does not zero the rest."
msgstr
""
#:
../../c-api/allocation.rst:37
msgid
""
"This does everything :c:func:`PyObject_Init` does, and also initializes the "
"length information for a variable-size object."
msgstr
""
"این تابع همهٔ کارهایی را انجام میدهد که :c:func:`PyObject_Init` انجام میدهد، "
"و همچنین اطلاعات مربوط به طول را برای یک شیء با اندازهٔ متغیر مقداردهی میکند."
#:
../../c-api/allocation.rst:42
msgid
""
"This function only initializes some of the object's memory. It does not "
"zero the rest."
msgstr
""
#:
../../c-api/allocation.rst:48
msgid
""
"Allocates a new Python object using the C structure type *TYPE* and the "
"Python type object *typeobj* (``PyTypeObject*``) by calling :c:func:"
"`PyObject_Malloc` to allocate memory and initializing it like :c:func:"
"`PyObject_Init`. The caller will own the only reference to the object (i.e. "
"its reference count will be one)."
msgstr
""
#:
../../c-api/allocation.rst:54
../../c-api/allocation.rst:107
msgid
""
"Avoid calling this directly to allocate memory for an object; call the "
"type's :c:member:`~PyTypeObject.tp_alloc` slot instead."
msgstr
""
#:
../../c-api/allocation.rst:57
../../c-api/allocation.rst:110
msgid
""
"When populating a type's :c:member:`~PyTypeObject.tp_alloc` slot, :c:func:"
"`PyType_GenericAlloc` is preferred over a custom function that simply calls "
"this macro."
msgstr
""
#:
../../c-api/allocation.rst:61
msgid
""
"This macro does not call :c:member:`~PyTypeObject.tp_alloc`, :c:member:"
"`~PyTypeObject.tp_new` (:meth:`~object.__new__`), or :c:member:"
"`~PyTypeObject.tp_init` (:meth:`~object.__init__`)."
msgstr
""
#:
../../c-api/allocation.rst:65
msgid
""
"This cannot be used for objects with :c:macro:`Py_TPFLAGS_HAVE_GC` set in :c:"
"member:`~PyTypeObject.tp_flags`; use :c:macro:`PyObject_GC_New` instead."
msgstr
""
#:
../../c-api/allocation.rst:68
msgid
""
"Memory allocated by this macro must be freed with :c:func:`PyObject_Free` "
"(usually called via the object's :c:member:`~PyTypeObject.tp_free` slot)."
msgstr
""
#:
../../c-api/allocation.rst:73
../../c-api/allocation.rst:123
msgid
""
"The returned memory is not guaranteed to have been completely zeroed before "
"it was initialized."
msgstr
""
#:
../../c-api/allocation.rst:78
../../c-api/allocation.rst:128
msgid
""
"This macro does not construct a fully initialized object of the given type; "
"it merely allocates memory and prepares it for further initialization by :c:"
"member:`~PyTypeObject.tp_init`. To construct a fully initialized object, "
"call *typeobj* instead. For example::"
msgstr
""
#:
../../c-api/allocation.rst:83
msgid
"PyObject *foo = PyObject_CallNoArgs((PyObject *)&PyFoo_Type);"
msgstr
""
#:
../../c-api/allocation.rst:87
../../c-api/allocation.rst:137
msgid
":c:func:`PyObject_Free`"
msgstr
""
#:
../../c-api/allocation.rst:88
msgid
":c:macro:`PyObject_GC_New`"
msgstr
""
#:
../../c-api/allocation.rst:89
../../c-api/allocation.rst:139
msgid
":c:func:`PyType_GenericAlloc`"
msgstr
""
#:
../../c-api/allocation.rst:90
../../c-api/allocation.rst:140
msgid
":c:member:`~PyTypeObject.tp_alloc`"
msgstr
""
#:
../../c-api/allocation.rst:95
msgid
"Like :c:macro:`PyObject_New` except:"
msgstr
""
#:
../../c-api/allocation.rst:97
msgid
""
"It allocates enough memory for the *TYPE* structure plus *size* "
"(``Py_ssize_t``) fields of the size given by the :c:member:`~PyTypeObject."
"tp_itemsize` field of *typeobj*."
msgstr
""
#:
../../c-api/allocation.rst:100
msgid
"The memory is initialized like :c:func:`PyObject_InitVar`."
msgstr
""
#:
../../c-api/allocation.rst:102
msgid
""
"This is useful for implementing objects like tuples, which are able to "
"determine their size at construction time. Embedding the array of fields "
"into the same allocation decreases the number of allocations, improving the "
"memory management efficiency."
msgstr
""
#:
../../c-api/allocation.rst:114
msgid
""
"This cannot be used for objects with :c:macro:`Py_TPFLAGS_HAVE_GC` set in :c:"
"member:`~PyTypeObject.tp_flags`; use :c:macro:`PyObject_GC_NewVar` instead."
msgstr
""
#:
../../c-api/allocation.rst:118
msgid
""
"Memory allocated by this function must be freed with :c:func:`PyObject_Free` "
"(usually called via the object's :c:member:`~PyTypeObject.tp_free` slot)."
msgstr
""
#:
../../c-api/allocation.rst:133
msgid
""
"PyObject *list_instance = PyObject_CallNoArgs((PyObject *)&PyList_Type);"
msgstr
""
#:
../../c-api/allocation.rst:138
msgid
":c:macro:`PyObject_GC_NewVar`"
msgstr
""
#:
../../c-api/allocation.rst:145
msgid
"Same as :c:func:`PyObject_Free`."
msgstr
"همانند :c:func:`PyObject_Free`"
#:
../../c-api/allocation.rst:149
msgid
""
"Object which is visible in Python as ``None``. This should only be accessed "
"using the :c:macro:`Py_None` macro, which evaluates to a pointer to this "
"object."
msgstr
""
"شیء ای که در پایتون به صورت ``None`` قابل مشاهده است\n"
"این فقط باید با استفاده از ماکرو :c:macro:`Py_None`، که به یک اشاره گر به "
"این شی ارزیابی می شود، دسترسی پیدا کند."
#:
../../c-api/allocation.rst:156
msgid
":ref:`moduleobjects`"
msgstr
""
#:
../../c-api/allocation.rst:157
msgid
"To allocate and create extension modules."
msgstr
"برای تخصیص و ایجاد ماژول های افزونه."
You can’t perform that action at this time.