Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
d1700a93
Kaydet (Commit)
d1700a93
authored
Mar 23, 2016
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix typo in doc: avoid the french "& cie" :-)
üst
1c3069ae
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
memory.rst
Doc/c-api/memory.rst
+1
-1
cmdline.rst
Doc/using/cmdline.rst
+4
-4
No files found.
Doc/c-api/memory.rst
Dosyayı görüntüle @
d1700a93
...
...
@@ -378,7 +378,7 @@ with a fixed size of 256 KB. It falls back to :c:func:`PyMem_RawMalloc` and
:c:func:`PyMem_RawRealloc` for allocations larger than 512 bytes.
*pymalloc* is the default allocator of the :c:data:`PYMEM_DOMAIN_OBJ` domain
(
:c:func:`PyObject_Malloc` & cie
).
(
ex: :c:func:`PyObject_Malloc`
).
The arena allocator uses the following functions:
...
...
Doc/using/cmdline.rst
Dosyayı görüntüle @
d1700a93
...
...
@@ -628,12 +628,12 @@ conflict.
Set the family of memory allocators used by Python:
* ``malloc``: use the :c:func:`malloc` function of the C library
for all Python memory allocators (:c:func:`PyMem_RawMalloc`,
:c:func:`PyMem_Malloc`
, :c:func:`PyObject_Malloc` & cie
).
for all Python memory allocators (
ex:
:c:func:`PyMem_RawMalloc`,
:c:func:`PyMem_Malloc`
and :c:func:`PyObject_Malloc`
).
* ``pymalloc``: :c:func:`PyObject_Malloc`, :c:func:`PyObject_Calloc` and
:c:func:`PyObject_Realloc` use the :ref:`pymalloc allocator <pymalloc>`.
Other Python memory allocators (
:c:func:`PyMem_RawMalloc`,
:c:func:`PyMem_Malloc`
& cie
) use :c:func:`malloc`.
Other Python memory allocators (
ex: :c:func:`PyMem_RawMalloc` and
:c:func:`PyMem_Malloc`) use :c:func:`malloc`.
Install debug hooks:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment