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
7a66fc22
Kaydet (Commit)
7a66fc22
authored
Şub 02, 2015
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
revert lineno and col_offset changes from #16795 (closes #21295)
üst
c468b537
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
30 additions
and
53 deletions
+30
-53
test_ast.py
Lib/test/test_ast.py
+14
-31
NEWS
Misc/NEWS
+3
-0
ast.c
Python/ast.c
+13
-22
importlib.h
Python/importlib.h
+0
-0
No files found.
Lib/test/test_ast.py
Dosyayı görüntüle @
7a66fc22
...
@@ -180,36 +180,20 @@ eval_tests = [
...
@@ -180,36 +180,20 @@ eval_tests = [
class
AST_Tests
(
unittest
.
TestCase
):
class
AST_Tests
(
unittest
.
TestCase
):
def
_assertTrueorder
(
self
,
ast_node
,
parent_pos
,
reverse_check
=
False
):
def
_assertTrueorder
(
self
,
ast_node
,
parent_pos
):
def
should_reverse_check
(
parent
,
child
):
# In some situations, the children of nodes occur before
# their parents, for example in a.b.c, a occurs before b
# but a is a child of b.
if
isinstance
(
parent
,
ast
.
Call
):
if
parent
.
func
==
child
:
return
True
if
isinstance
(
parent
,
(
ast
.
Attribute
,
ast
.
Subscript
)):
return
True
return
False
if
not
isinstance
(
ast_node
,
ast
.
AST
)
or
ast_node
.
_fields
is
None
:
if
not
isinstance
(
ast_node
,
ast
.
AST
)
or
ast_node
.
_fields
is
None
:
return
return
if
isinstance
(
ast_node
,
(
ast
.
expr
,
ast
.
stmt
,
ast
.
excepthandler
)):
if
isinstance
(
ast_node
,
(
ast
.
expr
,
ast
.
stmt
,
ast
.
excepthandler
)):
node_pos
=
(
ast_node
.
lineno
,
ast_node
.
col_offset
)
node_pos
=
(
ast_node
.
lineno
,
ast_node
.
col_offset
)
if
reverse_check
:
self
.
assertTrue
(
node_pos
>=
parent_pos
)
self
.
assertTrue
(
node_pos
<=
parent_pos
)
else
:
self
.
assertTrue
(
node_pos
>=
parent_pos
)
parent_pos
=
(
ast_node
.
lineno
,
ast_node
.
col_offset
)
parent_pos
=
(
ast_node
.
lineno
,
ast_node
.
col_offset
)
for
name
in
ast_node
.
_fields
:
for
name
in
ast_node
.
_fields
:
value
=
getattr
(
ast_node
,
name
)
value
=
getattr
(
ast_node
,
name
)
if
isinstance
(
value
,
list
):
if
isinstance
(
value
,
list
):
for
child
in
value
:
for
child
in
value
:
self
.
_assertTrueorder
(
child
,
parent_pos
,
self
.
_assertTrueorder
(
child
,
parent_pos
)
should_reverse_check
(
ast_node
,
child
))
elif
value
is
not
None
:
elif
value
is
not
None
:
self
.
_assertTrueorder
(
value
,
parent_pos
,
self
.
_assertTrueorder
(
value
,
parent_pos
)
should_reverse_check
(
ast_node
,
value
))
def
test_AST_objects
(
self
):
def
test_AST_objects
(
self
):
x
=
ast
.
AST
()
x
=
ast
.
AST
()
...
@@ -278,9 +262,8 @@ class AST_Tests(unittest.TestCase):
...
@@ -278,9 +262,8 @@ class AST_Tests(unittest.TestCase):
def
test_arguments
(
self
):
def
test_arguments
(
self
):
x
=
ast
.
arguments
()
x
=
ast
.
arguments
()
self
.
assertEqual
(
x
.
_fields
,
(
'args'
,
'vararg'
,
self
.
assertEqual
(
x
.
_fields
,
(
'args'
,
'vararg'
,
'kwonlyargs'
,
'kwonlyargs'
,
'kw_defaults'
,
'kw_defaults'
,
'kwarg'
,
'defaults'
))
'kwarg'
,
'defaults'
))
with
self
.
assertRaises
(
AttributeError
):
with
self
.
assertRaises
(
AttributeError
):
x
.
vararg
x
.
vararg
...
@@ -455,7 +438,7 @@ class ASTHelpers_Test(unittest.TestCase):
...
@@ -455,7 +438,7 @@ class ASTHelpers_Test(unittest.TestCase):
"lineno=1, col_offset=0), args=[Name(id='eggs', ctx=Load(), "
"lineno=1, col_offset=0), args=[Name(id='eggs', ctx=Load(), "
"lineno=1, col_offset=5), Str(s='and cheese', lineno=1, "
"lineno=1, col_offset=5), Str(s='and cheese', lineno=1, "
"col_offset=11)], keywords=[], starargs=None, kwargs=None, "
"col_offset=11)], keywords=[], starargs=None, kwargs=None, "
"lineno=1, col_offset=
4
), lineno=1, col_offset=0)])"
"lineno=1, col_offset=
0
), lineno=1, col_offset=0)])"
)
)
def
test_copy_location
(
self
):
def
test_copy_location
(
self
):
...
@@ -476,7 +459,7 @@ class ASTHelpers_Test(unittest.TestCase):
...
@@ -476,7 +459,7 @@ class ASTHelpers_Test(unittest.TestCase):
"Module(body=[Expr(value=Call(func=Name(id='write', ctx=Load(), "
"Module(body=[Expr(value=Call(func=Name(id='write', ctx=Load(), "
"lineno=1, col_offset=0), args=[Str(s='spam', lineno=1, "
"lineno=1, col_offset=0), args=[Str(s='spam', lineno=1, "
"col_offset=6)], keywords=[], starargs=None, kwargs=None, "
"col_offset=6)], keywords=[], starargs=None, kwargs=None, "
"lineno=1, col_offset=
5
), lineno=1, col_offset=0), "
"lineno=1, col_offset=
0
), lineno=1, col_offset=0), "
"Expr(value=Call(func=Name(id='spam', ctx=Load(), lineno=1, "
"Expr(value=Call(func=Name(id='spam', ctx=Load(), lineno=1, "
"col_offset=0), args=[Str(s='eggs', lineno=1, col_offset=0)], "
"col_offset=0), args=[Str(s='eggs', lineno=1, col_offset=0)], "
"keywords=[], starargs=None, kwargs=None, lineno=1, "
"keywords=[], starargs=None, kwargs=None, lineno=1, "
...
@@ -973,7 +956,7 @@ exec_results = [
...
@@ -973,7 +956,7 @@ exec_results = [
(
'Module'
,
[(
'FunctionDef'
,
(
1
,
0
),
'f'
,
(
'arguments'
,
[(
'arg'
,
(
1
,
6
),
'a'
,
None
)],
None
,
[],
[],
None
,
[(
'Num'
,
(
1
,
8
),
0
)]),
[(
'Pass'
,
(
1
,
12
))],
[],
None
)]),
(
'Module'
,
[(
'FunctionDef'
,
(
1
,
0
),
'f'
,
(
'arguments'
,
[(
'arg'
,
(
1
,
6
),
'a'
,
None
)],
None
,
[],
[],
None
,
[(
'Num'
,
(
1
,
8
),
0
)]),
[(
'Pass'
,
(
1
,
12
))],
[],
None
)]),
(
'Module'
,
[(
'FunctionDef'
,
(
1
,
0
),
'f'
,
(
'arguments'
,
[],
(
'arg'
,
(
1
,
7
),
'args'
,
None
),
[],
[],
None
,
[]),
[(
'Pass'
,
(
1
,
14
))],
[],
None
)]),
(
'Module'
,
[(
'FunctionDef'
,
(
1
,
0
),
'f'
,
(
'arguments'
,
[],
(
'arg'
,
(
1
,
7
),
'args'
,
None
),
[],
[],
None
,
[]),
[(
'Pass'
,
(
1
,
14
))],
[],
None
)]),
(
'Module'
,
[(
'FunctionDef'
,
(
1
,
0
),
'f'
,
(
'arguments'
,
[],
None
,
[],
[],
(
'arg'
,
(
1
,
8
),
'kwargs'
,
None
),
[]),
[(
'Pass'
,
(
1
,
17
))],
[],
None
)]),
(
'Module'
,
[(
'FunctionDef'
,
(
1
,
0
),
'f'
,
(
'arguments'
,
[],
None
,
[],
[],
(
'arg'
,
(
1
,
8
),
'kwargs'
,
None
),
[]),
[(
'Pass'
,
(
1
,
17
))],
[],
None
)]),
(
'Module'
,
[(
'FunctionDef'
,
(
1
,
0
),
'f'
,
(
'arguments'
,
[(
'arg'
,
(
1
,
6
),
'a'
,
None
),
(
'arg'
,
(
1
,
9
),
'b'
,
None
),
(
'arg'
,
(
1
,
14
),
'c'
,
None
),
(
'arg'
,
(
1
,
22
),
'd'
,
None
),
(
'arg'
,
(
1
,
28
),
'e'
,
None
)],
(
'arg'
,
(
1
,
35
),
'args'
,
None
),
[(
'arg'
,
(
1
,
41
),
'f'
,
None
)],
[(
'Num'
,
(
1
,
43
),
42
)],
(
'arg'
,
(
1
,
49
),
'kwargs'
,
None
),
[(
'Num'
,
(
1
,
11
),
1
),
(
'NameConstant'
,
(
1
,
16
),
None
),
(
'List'
,
(
1
,
24
),
[],
(
'Load'
,)),
(
'Dict'
,
(
1
,
30
),
[],
[])]),
[(
'Pass'
,
(
1
,
58
))],
[],
None
)]),
(
'Module'
,
[(
'FunctionDef'
,
(
1
,
0
),
'f'
,
(
'arguments'
,
[(
'arg'
,
(
1
,
6
),
'a'
,
None
),
(
'arg'
,
(
1
,
9
),
'b'
,
None
),
(
'arg'
,
(
1
,
14
),
'c'
,
None
),
(
'arg'
,
(
1
,
22
),
'd'
,
None
),
(
'arg'
,
(
1
,
28
),
'e'
,
None
)],
(
'arg'
,
(
1
,
35
),
'args'
,
None
),
[(
'arg'
,
(
1
,
41
),
'f'
,
None
)],
[(
'Num'
,
(
1
,
43
),
42
)],
(
'arg'
,
(
1
,
49
),
'kwargs'
,
None
),
[(
'Num'
,
(
1
,
11
),
1
),
(
'NameConstant'
,
(
1
,
16
),
None
),
(
'List'
,
(
1
,
24
),
[],
(
'Load'
,)),
(
'Dict'
,
(
1
,
30
),
[],
[])]),
[(
'Pass'
,
(
1
,
58
))],
[],
None
)]),
(
'Module'
,
[(
'ClassDef'
,
(
1
,
0
),
'C'
,
[],
[],
None
,
None
,
[(
'Pass'
,
(
1
,
8
))],
[])]),
(
'Module'
,
[(
'ClassDef'
,
(
1
,
0
),
'C'
,
[],
[],
None
,
None
,
[(
'Pass'
,
(
1
,
8
))],
[])]),
(
'Module'
,
[(
'ClassDef'
,
(
1
,
0
),
'C'
,
[(
'Name'
,
(
1
,
8
),
'object'
,
(
'Load'
,))],
[],
None
,
None
,
[(
'Pass'
,
(
1
,
17
))],
[])]),
(
'Module'
,
[(
'ClassDef'
,
(
1
,
0
),
'C'
,
[(
'Name'
,
(
1
,
8
),
'object'
,
(
'Load'
,))],
[],
None
,
None
,
[(
'Pass'
,
(
1
,
17
))],
[])]),
(
'Module'
,
[(
'FunctionDef'
,
(
1
,
0
),
'f'
,
(
'arguments'
,
[],
None
,
[],
[],
None
,
[]),
[(
'Return'
,
(
1
,
8
),
(
'Num'
,
(
1
,
15
),
1
))],
[],
None
)]),
(
'Module'
,
[(
'FunctionDef'
,
(
1
,
0
),
'f'
,
(
'arguments'
,
[],
None
,
[],
[],
None
,
[]),
[(
'Return'
,
(
1
,
8
),
(
'Num'
,
(
1
,
15
),
1
))],
[],
None
)]),
...
@@ -985,7 +968,7 @@ exec_results = [
...
@@ -985,7 +968,7 @@ exec_results = [
(
'Module'
,
[(
'If'
,
(
1
,
0
),
(
'Name'
,
(
1
,
3
),
'v'
,
(
'Load'
,)),
[(
'Pass'
,
(
1
,
5
))],
[])]),
(
'Module'
,
[(
'If'
,
(
1
,
0
),
(
'Name'
,
(
1
,
3
),
'v'
,
(
'Load'
,)),
[(
'Pass'
,
(
1
,
5
))],
[])]),
(
'Module'
,
[(
'With'
,
(
1
,
0
),
[(
'withitem'
,
(
'Name'
,
(
1
,
5
),
'x'
,
(
'Load'
,)),
(
'Name'
,
(
1
,
10
),
'y'
,
(
'Store'
,)))],
[(
'Pass'
,
(
1
,
13
))])]),
(
'Module'
,
[(
'With'
,
(
1
,
0
),
[(
'withitem'
,
(
'Name'
,
(
1
,
5
),
'x'
,
(
'Load'
,)),
(
'Name'
,
(
1
,
10
),
'y'
,
(
'Store'
,)))],
[(
'Pass'
,
(
1
,
13
))])]),
(
'Module'
,
[(
'With'
,
(
1
,
0
),
[(
'withitem'
,
(
'Name'
,
(
1
,
5
),
'x'
,
(
'Load'
,)),
(
'Name'
,
(
1
,
10
),
'y'
,
(
'Store'
,))),
(
'withitem'
,
(
'Name'
,
(
1
,
13
),
'z'
,
(
'Load'
,)),
(
'Name'
,
(
1
,
18
),
'q'
,
(
'Store'
,)))],
[(
'Pass'
,
(
1
,
21
))])]),
(
'Module'
,
[(
'With'
,
(
1
,
0
),
[(
'withitem'
,
(
'Name'
,
(
1
,
5
),
'x'
,
(
'Load'
,)),
(
'Name'
,
(
1
,
10
),
'y'
,
(
'Store'
,))),
(
'withitem'
,
(
'Name'
,
(
1
,
13
),
'z'
,
(
'Load'
,)),
(
'Name'
,
(
1
,
18
),
'q'
,
(
'Store'
,)))],
[(
'Pass'
,
(
1
,
21
))])]),
(
'Module'
,
[(
'Raise'
,
(
1
,
0
),
(
'Call'
,
(
1
,
15
),
(
'Name'
,
(
1
,
6
),
'Exception'
,
(
'Load'
,)),
[(
'Str'
,
(
1
,
16
),
'string'
)],
[],
None
,
None
),
None
)]),
(
'Module'
,
[(
'Raise'
,
(
1
,
0
),
(
'Call'
,
(
1
,
6
),
(
'Name'
,
(
1
,
6
),
'Exception'
,
(
'Load'
,)),
[(
'Str'
,
(
1
,
16
),
'string'
)],
[],
None
,
None
),
None
)]),
(
'Module'
,
[(
'Try'
,
(
1
,
0
),
[(
'Pass'
,
(
2
,
2
))],
[(
'ExceptHandler'
,
(
3
,
0
),
(
'Name'
,
(
3
,
7
),
'Exception'
,
(
'Load'
,)),
None
,
[(
'Pass'
,
(
4
,
2
))])],
[],
[])]),
(
'Module'
,
[(
'Try'
,
(
1
,
0
),
[(
'Pass'
,
(
2
,
2
))],
[(
'ExceptHandler'
,
(
3
,
0
),
(
'Name'
,
(
3
,
7
),
'Exception'
,
(
'Load'
,)),
None
,
[(
'Pass'
,
(
4
,
2
))])],
[],
[])]),
(
'Module'
,
[(
'Try'
,
(
1
,
0
),
[(
'Pass'
,
(
2
,
2
))],
[],
[],
[(
'Pass'
,
(
4
,
2
))])]),
(
'Module'
,
[(
'Try'
,
(
1
,
0
),
[(
'Pass'
,
(
2
,
2
))],
[],
[],
[(
'Pass'
,
(
4
,
2
))])]),
(
'Module'
,
[(
'Assert'
,
(
1
,
0
),
(
'Name'
,
(
1
,
7
),
'v'
,
(
'Load'
,)),
None
)]),
(
'Module'
,
[(
'Assert'
,
(
1
,
0
),
(
'Name'
,
(
1
,
7
),
'v'
,
(
'Load'
,)),
None
)]),
...
@@ -1022,17 +1005,17 @@ eval_results = [
...
@@ -1022,17 +1005,17 @@ eval_results = [
(
'Expression'
,
(
'ListComp'
,
(
1
,
1
),
(
'Name'
,
(
1
,
1
),
'a'
,
(
'Load'
,)),
[(
'comprehension'
,
(
'Name'
,
(
1
,
7
),
'b'
,
(
'Store'
,)),
(
'Name'
,
(
1
,
12
),
'c'
,
(
'Load'
,)),
[(
'Name'
,
(
1
,
17
),
'd'
,
(
'Load'
,))])])),
(
'Expression'
,
(
'ListComp'
,
(
1
,
1
),
(
'Name'
,
(
1
,
1
),
'a'
,
(
'Load'
,)),
[(
'comprehension'
,
(
'Name'
,
(
1
,
7
),
'b'
,
(
'Store'
,)),
(
'Name'
,
(
1
,
12
),
'c'
,
(
'Load'
,)),
[(
'Name'
,
(
1
,
17
),
'd'
,
(
'Load'
,))])])),
(
'Expression'
,
(
'GeneratorExp'
,
(
1
,
1
),
(
'Name'
,
(
1
,
1
),
'a'
,
(
'Load'
,)),
[(
'comprehension'
,
(
'Name'
,
(
1
,
7
),
'b'
,
(
'Store'
,)),
(
'Name'
,
(
1
,
12
),
'c'
,
(
'Load'
,)),
[(
'Name'
,
(
1
,
17
),
'd'
,
(
'Load'
,))])])),
(
'Expression'
,
(
'GeneratorExp'
,
(
1
,
1
),
(
'Name'
,
(
1
,
1
),
'a'
,
(
'Load'
,)),
[(
'comprehension'
,
(
'Name'
,
(
1
,
7
),
'b'
,
(
'Store'
,)),
(
'Name'
,
(
1
,
12
),
'c'
,
(
'Load'
,)),
[(
'Name'
,
(
1
,
17
),
'd'
,
(
'Load'
,))])])),
(
'Expression'
,
(
'Compare'
,
(
1
,
0
),
(
'Num'
,
(
1
,
0
),
1
),
[(
'Lt'
,),
(
'Lt'
,)],
[(
'Num'
,
(
1
,
4
),
2
),
(
'Num'
,
(
1
,
8
),
3
)])),
(
'Expression'
,
(
'Compare'
,
(
1
,
0
),
(
'Num'
,
(
1
,
0
),
1
),
[(
'Lt'
,),
(
'Lt'
,)],
[(
'Num'
,
(
1
,
4
),
2
),
(
'Num'
,
(
1
,
8
),
3
)])),
(
'Expression'
,
(
'Call'
,
(
1
,
1
),
(
'Name'
,
(
1
,
0
),
'f'
,
(
'Load'
,)),
[(
'Num'
,
(
1
,
2
),
1
),
(
'Num'
,
(
1
,
4
),
2
)],
[(
'keyword'
,
'c'
,
(
'Num'
,
(
1
,
8
),
3
))],
(
'Name'
,
(
1
,
11
),
'd'
,
(
'Load'
,)),
(
'Name'
,
(
1
,
15
),
'e'
,
(
'Load'
,)))),
(
'Expression'
,
(
'Call'
,
(
1
,
0
),
(
'Name'
,
(
1
,
0
),
'f'
,
(
'Load'
,)),
[(
'Num'
,
(
1
,
2
),
1
),
(
'Num'
,
(
1
,
4
),
2
)],
[(
'keyword'
,
'c'
,
(
'Num'
,
(
1
,
8
),
3
))],
(
'Name'
,
(
1
,
11
),
'd'
,
(
'Load'
,)),
(
'Name'
,
(
1
,
15
),
'e'
,
(
'Load'
,)))),
(
'Expression'
,
(
'Num'
,
(
1
,
0
),
10
)),
(
'Expression'
,
(
'Num'
,
(
1
,
0
),
10
)),
(
'Expression'
,
(
'Str'
,
(
1
,
0
),
'string'
)),
(
'Expression'
,
(
'Str'
,
(
1
,
0
),
'string'
)),
(
'Expression'
,
(
'Attribute'
,
(
1
,
2
),
(
'Name'
,
(
1
,
0
),
'a'
,
(
'Load'
,)),
'b'
,
(
'Load'
,))),
(
'Expression'
,
(
'Attribute'
,
(
1
,
0
),
(
'Name'
,
(
1
,
0
),
'a'
,
(
'Load'
,)),
'b'
,
(
'Load'
,))),
(
'Expression'
,
(
'Subscript'
,
(
1
,
2
),
(
'Name'
,
(
1
,
0
),
'a'
,
(
'Load'
,)),
(
'Slice'
,
(
'Name'
,
(
1
,
2
),
'b'
,
(
'Load'
,)),
(
'Name'
,
(
1
,
4
),
'c'
,
(
'Load'
,)),
None
),
(
'Load'
,))),
(
'Expression'
,
(
'Subscript'
,
(
1
,
0
),
(
'Name'
,
(
1
,
0
),
'a'
,
(
'Load'
,)),
(
'Slice'
,
(
'Name'
,
(
1
,
2
),
'b'
,
(
'Load'
,)),
(
'Name'
,
(
1
,
4
),
'c'
,
(
'Load'
,)),
None
),
(
'Load'
,))),
(
'Expression'
,
(
'Name'
,
(
1
,
0
),
'v'
,
(
'Load'
,))),
(
'Expression'
,
(
'Name'
,
(
1
,
0
),
'v'
,
(
'Load'
,))),
(
'Expression'
,
(
'List'
,
(
1
,
0
),
[(
'Num'
,
(
1
,
1
),
1
),
(
'Num'
,
(
1
,
3
),
2
),
(
'Num'
,
(
1
,
5
),
3
)],
(
'Load'
,))),
(
'Expression'
,
(
'List'
,
(
1
,
0
),
[(
'Num'
,
(
1
,
1
),
1
),
(
'Num'
,
(
1
,
3
),
2
),
(
'Num'
,
(
1
,
5
),
3
)],
(
'Load'
,))),
(
'Expression'
,
(
'List'
,
(
1
,
0
),
[],
(
'Load'
,))),
(
'Expression'
,
(
'List'
,
(
1
,
0
),
[],
(
'Load'
,))),
(
'Expression'
,
(
'Tuple'
,
(
1
,
0
),
[(
'Num'
,
(
1
,
0
),
1
),
(
'Num'
,
(
1
,
2
),
2
),
(
'Num'
,
(
1
,
4
),
3
)],
(
'Load'
,))),
(
'Expression'
,
(
'Tuple'
,
(
1
,
0
),
[(
'Num'
,
(
1
,
0
),
1
),
(
'Num'
,
(
1
,
2
),
2
),
(
'Num'
,
(
1
,
4
),
3
)],
(
'Load'
,))),
(
'Expression'
,
(
'Tuple'
,
(
1
,
1
),
[(
'Num'
,
(
1
,
1
),
1
),
(
'Num'
,
(
1
,
3
),
2
),
(
'Num'
,
(
1
,
5
),
3
)],
(
'Load'
,))),
(
'Expression'
,
(
'Tuple'
,
(
1
,
1
),
[(
'Num'
,
(
1
,
1
),
1
),
(
'Num'
,
(
1
,
3
),
2
),
(
'Num'
,
(
1
,
5
),
3
)],
(
'Load'
,))),
(
'Expression'
,
(
'Tuple'
,
(
1
,
0
),
[],
(
'Load'
,))),
(
'Expression'
,
(
'Tuple'
,
(
1
,
0
),
[],
(
'Load'
,))),
(
'Expression'
,
(
'Call'
,
(
1
,
7
),
(
'Attribute'
,
(
1
,
6
),
(
'Attribute'
,
(
1
,
4
),
(
'Attribute'
,
(
1
,
2
),
(
'Name'
,
(
1
,
0
),
'a'
,
(
'Load'
,)),
'b'
,
(
'Load'
,)),
'c'
,
(
'Load'
,)),
'd'
,
(
'Load'
,)),
[(
'Subscript'
,
(
1
,
12
),
(
'Attribute'
,
(
1
,
10
),
(
'Name'
,
(
1
,
8
),
'a'
,
(
'Load'
,)),
'b'
,
(
'Load'
,)),
(
'Slice'
,
(
'Num'
,
(
1
,
12
),
1
),
(
'Num'
,
(
1
,
14
),
2
),
None
),
(
'Load'
,))],
[],
None
,
None
)),
(
'Expression'
,
(
'Call'
,
(
1
,
0
),
(
'Attribute'
,
(
1
,
0
),
(
'Attribute'
,
(
1
,
0
),
(
'Attribute'
,
(
1
,
0
),
(
'Name'
,
(
1
,
0
),
'a'
,
(
'Load'
,)),
'b'
,
(
'Load'
,)),
'c'
,
(
'Load'
,)),
'd'
,
(
'Load'
,)),
[(
'Subscript'
,
(
1
,
8
),
(
'Attribute'
,
(
1
,
8
),
(
'Name'
,
(
1
,
8
),
'a'
,
(
'Load'
,)),
'b'
,
(
'Load'
,)),
(
'Slice'
,
(
'Num'
,
(
1
,
12
),
1
),
(
'Num'
,
(
1
,
14
),
2
),
None
),
(
'Load'
,))],
[],
None
,
None
)),
]
]
main
()
main
()
Misc/NEWS
Dosyayı görüntüle @
7a66fc22
...
@@ -11,6 +11,9 @@ Release date: TBA
...
@@ -11,6 +11,9 @@ Release date: TBA
Core and Builtins
Core and Builtins
-----------------
-----------------
- Issue #21295: Revert some changes (issue #16795) to AST line numbers and
column offsets that constituted a regression.
- Issue #21408: The default __ne__() now returns NotImplemented if __eq__()
- Issue #21408: The default __ne__() now returns NotImplemented if __eq__()
returned NotImplemented. Original patch by Martin Panter.
returned NotImplemented. Original patch by Martin Panter.
...
...
Python/ast.c
Dosyayı görüntüle @
7a66fc22
...
@@ -1123,7 +1123,7 @@ ast_for_arg(struct compiling *c, const node *n)
...
@@ -1123,7 +1123,7 @@ ast_for_arg(struct compiling *c, const node *n)
identifier
name
;
identifier
name
;
expr_ty
annotation
=
NULL
;
expr_ty
annotation
=
NULL
;
node
*
ch
;
node
*
ch
;
arg_ty
tmp
;
arg_ty
ret
;
assert
(
TYPE
(
n
)
==
tfpdef
||
TYPE
(
n
)
==
vfpdef
);
assert
(
TYPE
(
n
)
==
tfpdef
||
TYPE
(
n
)
==
vfpdef
);
ch
=
CHILD
(
n
,
0
);
ch
=
CHILD
(
n
,
0
);
...
@@ -1139,13 +1139,12 @@ ast_for_arg(struct compiling *c, const node *n)
...
@@ -1139,13 +1139,12 @@ ast_for_arg(struct compiling *c, const node *n)
return
NULL
;
return
NULL
;
}
}
tmp
=
arg
(
name
,
annotation
,
c
->
c_arena
);
ret
=
arg
(
name
,
annotation
,
c
->
c_arena
);
if
(
!
tmp
)
if
(
!
ret
)
return
NULL
;
return
NULL
;
ret
->
lineno
=
LINENO
(
n
);
tmp
->
lineno
=
LINENO
(
n
);
ret
->
col_offset
=
n
->
n_col_offset
;
tmp
->
col_offset
=
n
->
n_col_offset
;
return
ret
;
return
tmp
;
}
}
/* returns -1 if failed to handle keyword only arguments
/* returns -1 if failed to handle keyword only arguments
...
@@ -2103,22 +2102,15 @@ ast_for_trailer(struct compiling *c, const node *n, expr_ty left_expr)
...
@@ -2103,22 +2102,15 @@ ast_for_trailer(struct compiling *c, const node *n, expr_ty left_expr)
if
(
NCH
(
n
)
==
2
)
if
(
NCH
(
n
)
==
2
)
return
Call
(
left_expr
,
NULL
,
NULL
,
NULL
,
NULL
,
LINENO
(
n
),
return
Call
(
left_expr
,
NULL
,
NULL
,
NULL
,
NULL
,
LINENO
(
n
),
n
->
n_col_offset
,
c
->
c_arena
);
n
->
n_col_offset
,
c
->
c_arena
);
else
{
else
expr_ty
tmp
=
ast_for_call
(
c
,
CHILD
(
n
,
1
),
left_expr
);
return
ast_for_call
(
c
,
CHILD
(
n
,
1
),
left_expr
);
if
(
!
tmp
)
return
NULL
;
tmp
->
lineno
=
LINENO
(
n
);
tmp
->
col_offset
=
n
->
n_col_offset
;
return
tmp
;
}
}
}
else
if
(
TYPE
(
CHILD
(
n
,
0
))
==
DOT
)
{
else
if
(
TYPE
(
CHILD
(
n
,
0
))
==
DOT
)
{
PyObject
*
attr_id
=
NEW_IDENTIFIER
(
CHILD
(
n
,
1
));
PyObject
*
attr_id
=
NEW_IDENTIFIER
(
CHILD
(
n
,
1
));
if
(
!
attr_id
)
if
(
!
attr_id
)
return
NULL
;
return
NULL
;
return
Attribute
(
left_expr
,
attr_id
,
Load
,
return
Attribute
(
left_expr
,
attr_id
,
Load
,
LINENO
(
CHILD
(
n
,
1
)),
CHILD
(
n
,
1
)
->
n_col_offset
,
c
->
c_arena
);
LINENO
(
n
),
n
->
n_col_offset
,
c
->
c_arena
);
}
}
else
{
else
{
REQ
(
CHILD
(
n
,
0
),
LSQB
);
REQ
(
CHILD
(
n
,
0
),
LSQB
);
...
@@ -2219,16 +2211,15 @@ ast_for_power(struct compiling *c, const node *n)
...
@@ -2219,16 +2211,15 @@ ast_for_power(struct compiling *c, const node *n)
tmp
=
ast_for_trailer
(
c
,
ch
,
e
);
tmp
=
ast_for_trailer
(
c
,
ch
,
e
);
if
(
!
tmp
)
if
(
!
tmp
)
return
NULL
;
return
NULL
;
tmp
->
lineno
=
e
->
lineno
;
tmp
->
col_offset
=
e
->
col_offset
;
e
=
tmp
;
e
=
tmp
;
}
}
if
(
TYPE
(
CHILD
(
n
,
NCH
(
n
)
-
1
))
==
factor
)
{
if
(
TYPE
(
CHILD
(
n
,
NCH
(
n
)
-
1
))
==
factor
)
{
expr_ty
f
=
ast_for_expr
(
c
,
CHILD
(
n
,
NCH
(
n
)
-
1
));
expr_ty
f
=
ast_for_expr
(
c
,
CHILD
(
n
,
NCH
(
n
)
-
1
));
if
(
!
f
)
if
(
!
f
)
return
NULL
;
return
NULL
;
tmp
=
BinOp
(
e
,
Pow
,
f
,
LINENO
(
n
),
n
->
n_col_offset
,
c
->
c_arena
);
e
=
BinOp
(
e
,
Pow
,
f
,
LINENO
(
n
),
n
->
n_col_offset
,
c
->
c_arena
);
if
(
!
tmp
)
return
NULL
;
e
=
tmp
;
}
}
return
e
;
return
e
;
}
}
...
...
Python/importlib.h
Dosyayı görüntüle @
7a66fc22
This diff is collapsed.
Click to expand it.
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