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
cbe2e491
Kaydet (Commit)
cbe2e491
authored
Nis 18, 2006
tarafından
Skip Montanaro
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
C++ compiler cleanup: a cast here, a cast there... still does not compile under C++ though...
üst
14f8899d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
arraymodule.c
Modules/arraymodule.c
+4
-3
No files found.
Modules/arraymodule.c
Dosyayı görüntüle @
cbe2e491
...
...
@@ -1164,7 +1164,7 @@ array_reverse(arrayobject *self, PyObject *unused)
register
char
*
p
,
*
q
;
/* little buffer to hold items while swapping */
char
tmp
[
256
];
/* 8 is probably enough -- but why skimp */
assert
(
itemsize
<=
sizeof
(
tmp
));
assert
(
(
size_t
)
itemsize
<=
sizeof
(
tmp
));
if
(
self
->
ob_size
>
1
)
{
for
(
p
=
self
->
ob_item
,
...
...
@@ -1674,7 +1674,8 @@ array_ass_subscr(arrayobject* self, PyObject* item, PyObject* value)
}
self
->
ob_size
-=
slicelength
;
self
->
ob_item
=
PyMem_REALLOC
(
self
->
ob_item
,
itemsize
*
self
->
ob_size
);
self
->
ob_item
=
(
char
*
)
PyMem_REALLOC
(
self
->
ob_item
,
itemsize
*
self
->
ob_size
);
self
->
allocated
=
self
->
ob_size
;
return
0
;
...
...
@@ -1866,7 +1867,7 @@ array_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
if
(
n
>
0
)
{
arrayobject
*
self
=
(
arrayobject
*
)
a
;
char
*
item
=
self
->
ob_item
;
item
=
PyMem_Realloc
(
item
,
n
);
item
=
(
char
*
)
PyMem_Realloc
(
item
,
n
);
if
(
item
==
NULL
)
{
PyErr_NoMemory
();
Py_DECREF
(
a
);
...
...
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