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
fda6d0ac
Kaydet (Commit)
fda6d0ac
authored
Ock 17, 2017
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
next() uses FASTCALL
üst
84b388bb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
3 deletions
+9
-3
bltinmodule.c
Python/bltinmodule.c
+9
-3
No files found.
Python/bltinmodule.c
Dosyayı görüntüle @
fda6d0ac
...
...
@@ -1303,13 +1303,19 @@ PyTypeObject PyMap_Type = {
/* AC: cannot convert yet, as needs PEP 457 group support in inspect */
static
PyObject
*
builtin_next
(
PyObject
*
self
,
PyObject
*
args
)
builtin_next
(
PyObject
*
self
,
PyObject
**
args
,
Py_ssize_t
nargs
,
PyObject
*
kwnames
)
{
PyObject
*
it
,
*
res
;
PyObject
*
def
=
NULL
;
if
(
!
PyArg_UnpackTuple
(
args
,
"next"
,
1
,
2
,
&
it
,
&
def
))
if
(
!
_PyArg_UnpackStack
(
args
,
n
args
,
"next"
,
1
,
2
,
&
it
,
&
def
))
return
NULL
;
if
(
!
_PyArg_NoStackKeywords
(
"next"
,
kwnames
))
{
return
NULL
;
}
if
(
!
PyIter_Check
(
it
))
{
PyErr_Format
(
PyExc_TypeError
,
"'%.200s' object is not an iterator"
,
...
...
@@ -2641,7 +2647,7 @@ static PyMethodDef builtin_methods[] = {
BUILTIN_LOCALS_METHODDEF
{
"max"
,
(
PyCFunction
)
builtin_max
,
METH_VARARGS
|
METH_KEYWORDS
,
max_doc
},
{
"min"
,
(
PyCFunction
)
builtin_min
,
METH_VARARGS
|
METH_KEYWORDS
,
min_doc
},
{
"next"
,
(
PyCFunction
)
builtin_next
,
METH_
VARARGS
,
next_doc
},
{
"next"
,
(
PyCFunction
)
builtin_next
,
METH_
FASTCALL
,
next_doc
},
BUILTIN_OCT_METHODDEF
BUILTIN_ORD_METHODDEF
BUILTIN_POW_METHODDEF
...
...
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