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
ce1d5d25
Kaydet (Commit)
ce1d5d25
authored
Şub 26, 2006
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix iterating over cmpop_ty lists.
üst
bd260da9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
7 deletions
+20
-7
asdl_c.py
Parser/asdl_c.py
+13
-5
Python-ast.c
Python/Python-ast.c
+7
-2
No files found.
Parser/asdl_c.py
Dosyayı görüntüle @
ce1d5d25
...
...
@@ -609,13 +609,21 @@ class ObjVisitor(PickleVisitor):
def
set
(
self
,
field
,
value
,
depth
):
if
field
.
seq
:
# XXX should really check for is_simple, but that requires a symbol table
if
field
.
type
.
value
==
"cmpop"
:
# XXX check that this cast is safe, i.e. works independent on whether
# sizeof(cmpop_ty) != sizeof(void*)
cast
=
"(PyObject*(*)(void*))"
# While the sequence elements are stored as void*,
# ast2obj_cmpop expects an enum
self
.
emit
(
"{"
,
depth
)
self
.
emit
(
"int i, n = asdl_seq_LEN(
%
s);"
%
value
,
depth
+
1
)
self
.
emit
(
"value = PyList_New(n);"
,
depth
+
1
)
self
.
emit
(
"if (!value) goto failed;"
,
depth
+
1
)
self
.
emit
(
"for(i = 0; i < n; i++)"
,
depth
+
1
)
# This cannot fail, so no need for error handling
self
.
emit
(
"PyList_SET_ITEM(value, i, ast2obj_
%
s((
%
s_ty)asdl_seq_GET(
%
s, i)));"
%
(
field
.
type
,
field
.
type
,
value
),
depth
+
2
,
reflow
=
False
)
self
.
emit
(
"}"
,
depth
)
else
:
cast
=
""
self
.
emit
(
"value = ast2obj_list(
%
s,
%
sast2obj_
%
s);"
%
(
value
,
cast
,
field
.
type
),
depth
)
self
.
emit
(
"value = ast2obj_list(
%
s, ast2obj_
%
s);"
%
(
value
,
field
.
type
),
depth
)
else
:
ctype
=
get_c_type
(
field
.
type
)
self
.
emit
(
"value = ast2obj_
%
s(
%
s);"
%
(
field
.
type
,
value
),
depth
,
reflow
=
False
)
...
...
Python/Python-ast.c
Dosyayı görüntüle @
ce1d5d25
...
...
@@ -2216,8 +2216,13 @@ ast2obj_expr(void* _o)
if
(
PyObject_SetAttrString
(
result
,
"left"
,
value
)
==
-
1
)
goto
failed
;
Py_DECREF
(
value
);
value
=
ast2obj_list
(
o
->
v
.
Compare
.
ops
,
(
PyObject
*
(
*
)(
void
*
))
ast2obj_cmpop
);
{
int
i
,
n
=
asdl_seq_LEN
(
o
->
v
.
Compare
.
ops
);
value
=
PyList_New
(
n
);
if
(
!
value
)
goto
failed
;
for
(
i
=
0
;
i
<
n
;
i
++
)
PyList_SET_ITEM
(
value
,
i
,
ast2obj_cmpop
((
cmpop_ty
)
asdl_seq_GET
(
o
->
v
.
Compare
.
ops
,
i
)));
}
if
(
!
value
)
goto
failed
;
if
(
PyObject_SetAttrString
(
result
,
"ops"
,
value
)
==
-
1
)
goto
failed
;
...
...
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