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
cf360b92
Kaydet (Commit)
cf360b92
authored
May 07, 2012
tarafından
Mark Dickinson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #14701: Add missing support for 'raise ... from' in parser module.
üst
640335c6
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
12 deletions
+21
-12
test_parser.py
Lib/test/test_parser.py
+8
-0
NEWS
Misc/NEWS
+2
-0
parsermodule.c
Modules/parsermodule.c
+11
-12
No files found.
Lib/test/test_parser.py
Dosyayı görüntüle @
cf360b92
...
...
@@ -297,6 +297,14 @@ class RoundtripLegalSyntaxTestCase(unittest.TestCase):
self
.
check_suite
(
"[*a, *b] = y"
)
self
.
check_suite
(
"for [*x, b] in x: pass"
)
def
test_raise_statement
(
self
):
self
.
check_suite
(
"raise
\n
"
)
self
.
check_suite
(
"raise e
\n
"
)
self
.
check_suite
(
"try:
\n
"
" suite
\n
"
"except Exception as e:
\n
"
" raise ValueError from e
\n
"
)
#
# Second, we take *invalid* trees and make sure we get ParserError
...
...
Misc/NEWS
Dosyayı görüntüle @
cf360b92
...
...
@@ -61,6 +61,8 @@ Core and Builtins
Library
-------
- Issue #14701: Fix missing support for 'raise ... from' in parser module.
- Issue #13183: Fix pdb skipping frames after hitting a breakpoint and running
step. Patch by Xavier de Gaye.
...
...
Modules/parsermodule.c
Dosyayı görüntüle @
cf360b92
...
...
@@ -1608,31 +1608,30 @@ validate_return_stmt(node *tree)
}
/*
* raise_stmt:
*
* 'raise' [test ['from' test]]
*/
static
int
validate_raise_stmt
(
node
*
tree
)
{
int
nch
=
NCH
(
tree
);
int
res
=
(
validate_ntype
(
tree
,
raise_stmt
)
&&
((
nch
==
1
)
||
(
nch
==
2
)
||
(
nch
==
4
)
||
(
nch
==
6
)));
&&
((
nch
==
1
)
||
(
nch
==
2
)
||
(
nch
==
4
)));
if
(
!
res
&&
!
PyErr_Occurred
())
(
void
)
validate_numnodes
(
tree
,
2
,
"raise"
);
if
(
res
)
{
res
=
validate_name
(
CHILD
(
tree
,
0
),
"raise"
);
if
(
res
&&
(
nch
>=
2
))
res
=
validate_test
(
CHILD
(
tree
,
1
));
if
(
res
&&
nch
>
2
)
{
res
=
(
validate_
comma
(
CHILD
(
tree
,
2
)
)
if
(
res
&&
(
nch
==
4
)
)
{
res
=
(
validate_
name
(
CHILD
(
tree
,
2
),
"from"
)
&&
validate_test
(
CHILD
(
tree
,
3
)));
if
(
res
&&
(
nch
>
4
))
res
=
(
validate_comma
(
CHILD
(
tree
,
4
))
&&
validate_test
(
CHILD
(
tree
,
5
)));
}
}
else
(
void
)
validate_numnodes
(
tree
,
2
,
"raise"
);
if
(
res
&&
(
nch
==
4
))
res
=
(
validate_comma
(
CHILD
(
tree
,
2
))
&&
validate_test
(
CHILD
(
tree
,
3
)));
return
(
res
);
}
...
...
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