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
a937d148
Kaydet (Commit)
a937d148
authored
Nis 24, 1998
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fred's right -- we need PyList_SET_ITEM().
üst
7b7a2c2e
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
1 deletion
+12
-1
api.tex
Doc/api.tex
+5
-0
api.tex
Doc/api/api.tex
+5
-0
listobject.h
Include/listobject.h
+1
-0
bltinmodule.c
Python/bltinmodule.c
+1
-1
No files found.
Doc/api.tex
Dosyayı görüntüle @
a937d148
...
...
@@ -1953,6 +1953,11 @@ Returns a new tuple object containing the contents of \var{list}.
Macro form of
\cfunction
{
PyList
_
GetItem()
}
without error checking.
\end{cfuncdesc}
\begin{cfuncdesc}
{
PyObject*
}{
PyList
_
SET
_
ITEM
}{
PyObject *list, int i,
PyObject *o
}
Macro form of
\cfunction
{
PyList
_
SetItem()
}
without error checking.
\end{cfuncdesc}
\begin{cfuncdesc}
{
int
}{
PyList
_
GET
_
SIZE
}{
PyObject *list
}
Macro form of
\cfunction
{
PyList
_
GetSize()
}
without error checking.
\end{cfuncdesc}
...
...
Doc/api/api.tex
Dosyayı görüntüle @
a937d148
...
...
@@ -1953,6 +1953,11 @@ Returns a new tuple object containing the contents of \var{list}.
Macro form of
\cfunction
{
PyList
_
GetItem()
}
without error checking.
\end{cfuncdesc}
\begin{cfuncdesc}
{
PyObject*
}{
PyList
_
SET
_
ITEM
}{
PyObject *list, int i,
PyObject *o
}
Macro form of
\cfunction
{
PyList
_
SetItem()
}
without error checking.
\end{cfuncdesc}
\begin{cfuncdesc}
{
int
}{
PyList
_
GET
_
SIZE
}{
PyObject *list
}
Macro form of
\cfunction
{
PyList
_
GetSize()
}
without error checking.
\end{cfuncdesc}
...
...
Include/listobject.h
Dosyayı görüntüle @
a937d148
...
...
@@ -74,6 +74,7 @@ extern PyObject *PyList_AsTuple Py_PROTO((PyObject *));
/* Macro, trading safety for speed */
#define PyList_GET_ITEM(op, i) (((PyListObject *)(op))->ob_item[i])
#define PyList_SET_ITEM(op, i, v) (((PyListObject *)(op))->ob_item[i] = (v))
#define PyList_GET_SIZE(op) (((PyListObject *)(op))->ob_size)
#ifdef __cplusplus
...
...
Python/bltinmodule.c
Dosyayı görüntüle @
a937d148
...
...
@@ -1282,7 +1282,7 @@ builtin_range(self, args)
Py_DECREF
(
v
);
return
NULL
;
}
PyList_
GET_ITEM
(
v
,
i
)
=
w
;
PyList_
SET_ITEM
(
v
,
i
,
w
)
;
ilow
+=
istep
;
}
return
v
;
...
...
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