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
35e01fbe
Kaydet (Commit)
35e01fbe
authored
Eki 19, 2008
tarafından
Armin Ronacher
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #4067 by implementing _attributes and _fields for the AST root node.
üst
92b70bcc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
36 additions
and
0 deletions
+36
-0
asdl_c.py
Parser/asdl_c.py
+18
-0
Python-ast.c
Python/Python-ast.c
+18
-0
No files found.
Parser/asdl_c.py
Dosyayı görüntüle @
35e01fbe
...
...
@@ -824,12 +824,30 @@ static int obj2ast_bool(PyObject* obj, bool* out, PyArena* arena)
return 0;
}
static int add_ast_fields()
{
PyObject *empty_tuple, *d;
if (PyType_Ready(&AST_type) < 0)
return -1;
d = AST_type.tp_dict;
empty_tuple = PyTuple_New(0);
if (!empty_tuple ||
PyDict_SetItemString(d, "_fields", empty_tuple) < 0 ||
PyDict_SetItemString(d, "_attributes", empty_tuple) < 0) {
Py_XDECREF(empty_tuple);
return -1;
}
Py_DECREF(empty_tuple);
return 0;
}
"""
,
0
,
reflow
=
False
)
self
.
emit
(
"static int init_types(void)"
,
0
)
self
.
emit
(
"{"
,
0
)
self
.
emit
(
"static int initialized;"
,
1
)
self
.
emit
(
"if (initialized) return 1;"
,
1
)
self
.
emit
(
"if (add_ast_fields() < 0) return 0;"
,
1
)
for
dfn
in
mod
.
dfns
:
self
.
visit
(
dfn
)
self
.
emit
(
"initialized = 1;"
,
1
)
...
...
Python/Python-ast.c
Dosyayı görüntüle @
35e01fbe
...
...
@@ -615,11 +615,29 @@ static int obj2ast_bool(PyObject* obj, bool* out, PyArena* arena)
return
0
;
}
static
int
add_ast_fields
()
{
PyObject
*
empty_tuple
,
*
d
;
if
(
PyType_Ready
(
&
AST_type
)
<
0
)
return
-
1
;
d
=
AST_type
.
tp_dict
;
empty_tuple
=
PyTuple_New
(
0
);
if
(
!
empty_tuple
||
PyDict_SetItemString
(
d
,
"_fields"
,
empty_tuple
)
<
0
||
PyDict_SetItemString
(
d
,
"_attributes"
,
empty_tuple
)
<
0
)
{
Py_XDECREF
(
empty_tuple
);
return
-
1
;
}
Py_DECREF
(
empty_tuple
);
return
0
;
}
static
int
init_types
(
void
)
{
static
int
initialized
;
if
(
initialized
)
return
1
;
if
(
add_ast_fields
()
<
0
)
return
0
;
mod_type
=
make_type
(
"mod"
,
&
AST_type
,
NULL
,
0
);
if
(
!
mod_type
)
return
0
;
if
(
!
add_attributes
(
mod_type
,
NULL
,
0
))
return
0
;
...
...
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