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
1b2e9444
Kaydet (Commit)
1b2e9444
authored
May 06, 2012
tarafından
Mark Dickinson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #14965: Fix missing support for starred assignments in Tools/parser/unparse.py.
üst
9ab3fdd8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
0 deletions
+17
-0
NEWS
Misc/NEWS
+6
-0
test_unparse.py
Tools/parser/test_unparse.py
+7
-0
unparse.py
Tools/parser/unparse.py
+4
-0
No files found.
Misc/NEWS
Dosyayı görüntüle @
1b2e9444
...
@@ -225,6 +225,12 @@ Documentation
...
@@ -225,6 +225,12 @@ Documentation
- Issue #14034: added the argparse tutorial.
- Issue #14034: added the argparse tutorial.
Tools/Demos
-----------
- Issue #14965: Fix missing support for starred assignments in
Tools/parser/unparse.py.
What's New in Python 3.2.3 release candidate 2?
What's New in Python 3.2.3 release candidate 2?
===============================================
===============================================
...
...
Tools/parser/test_unparse.py
Dosyayı görüntüle @
1b2e9444
...
@@ -209,6 +209,13 @@ class UnparseTestCase(ASTTestCase):
...
@@ -209,6 +209,13 @@ class UnparseTestCase(ASTTestCase):
def
test_try_except_finally
(
self
):
def
test_try_except_finally
(
self
):
self
.
check_roundtrip
(
try_except_finally
)
self
.
check_roundtrip
(
try_except_finally
)
def
test_starred_assignment
(
self
):
self
.
check_roundtrip
(
"a, *b, c = seq"
)
self
.
check_roundtrip
(
"a, (*b, c) = seq"
)
self
.
check_roundtrip
(
"a, *b[0], c = seq"
)
self
.
check_roundtrip
(
"a, *(b, c) = seq"
)
class
DirectoryTestCase
(
ASTTestCase
):
class
DirectoryTestCase
(
ASTTestCase
):
"""Test roundtrip behaviour on all files in Lib and Lib/test."""
"""Test roundtrip behaviour on all files in Lib and Lib/test."""
...
...
Tools/parser/unparse.py
Dosyayı görüntüle @
1b2e9444
...
@@ -472,6 +472,10 @@ class Unparser:
...
@@ -472,6 +472,10 @@ class Unparser:
self
.
dispatch
(
t
.
slice
)
self
.
dispatch
(
t
.
slice
)
self
.
write
(
"]"
)
self
.
write
(
"]"
)
def
_Starred
(
self
,
t
):
self
.
write
(
"*"
)
self
.
dispatch
(
t
.
value
)
# slice
# slice
def
_Ellipsis
(
self
,
t
):
def
_Ellipsis
(
self
,
t
):
self
.
write
(
"..."
)
self
.
write
(
"..."
)
...
...
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