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
943cab2f
Kaydet (Commit)
943cab2f
authored
May 07, 2012
tarafından
Mark Dickinson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #14741: Merge fix from 3.2.
üst
72f6095d
da029fb2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
test_parser.py
Lib/test/test_parser.py
+2
-0
NEWS
Misc/NEWS
+2
-0
parsermodule.c
Modules/parsermodule.c
+1
-5
No files found.
Lib/test/test_parser.py
Dosyayı görüntüle @
943cab2f
...
...
@@ -110,6 +110,8 @@ class RoundtripLegalSyntaxTestCase(unittest.TestCase):
self
.
check_expr
(
"lambda x, *y, **z: 0"
)
self
.
check_expr
(
"(x for x in range(10))"
)
self
.
check_expr
(
"foo(x for x in range(10))"
)
self
.
check_expr
(
"..."
)
self
.
check_expr
(
"a[...]"
)
def
test_simple_expression
(
self
):
# expr_stmt
...
...
Misc/NEWS
Dosyayı görüntüle @
943cab2f
...
...
@@ -20,6 +20,8 @@ Core and Builtins
Library
-------
- Issue #14741: Fix missing support for Ellipsis ('
...
') in parser module.
- Issue #14697: Fix missing support for set displays and set comprehensions in
parser module.
...
...
Modules/parsermodule.c
Dosyayı görüntüle @
943cab2f
...
...
@@ -2419,17 +2419,13 @@ validate_atom(node *tree)
break
;
case
NAME
:
case
NUMBER
:
case
ELLIPSIS
:
res
=
(
nch
==
1
);
break
;
case
STRING
:
for
(
pos
=
1
;
res
&&
(
pos
<
nch
);
++
pos
)
res
=
validate_ntype
(
CHILD
(
tree
,
pos
),
STRING
);
break
;
case
DOT
:
res
=
(
nch
==
3
&&
validate_ntype
(
CHILD
(
tree
,
1
),
DOT
)
&&
validate_ntype
(
CHILD
(
tree
,
2
),
DOT
));
break
;
default:
res
=
0
;
break
;
...
...
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