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
85dbec6d
Kaydet (Commit)
85dbec6d
authored
Kas 04, 2006
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Bug #1588287: fix invalid assertion for `1,2` in debug builds.
Will backport
üst
5310e507
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
0 deletions
+5
-0
test_grammar.py
Lib/test/test_grammar.py
+2
-0
NEWS
Misc/NEWS
+2
-0
ast.c
Python/ast.c
+1
-0
No files found.
Lib/test/test_grammar.py
Dosyayı görüntüle @
85dbec6d
...
...
@@ -747,6 +747,8 @@ hello world
x
=
`x`
x
=
`1 or 2 or 3`
self
.
assertEqual
(
`1,2`
,
'(1, 2)'
)
x
=
x
x
=
'x'
x
=
123
...
...
Misc/NEWS
Dosyayı görüntüle @
85dbec6d
...
...
@@ -12,6 +12,8 @@ What's New in Python 2.6 alpha 1?
Core and builtins
-----------------
- Bug #1588287: fix invalid assertion for `1,2` in debug builds.
- Bug #1576657: when setting a KeyError for a tuple key, make sure that
the tuple isn'
t
used
as
the
"exception arguments tuple"
.
...
...
Python/ast.c
Dosyayı görüntüle @
85dbec6d
...
...
@@ -532,6 +532,7 @@ seq_for_testlist(struct compiling *c, const node *n)
||
TYPE
(
n
)
==
listmaker
||
TYPE
(
n
)
==
testlist_gexp
||
TYPE
(
n
)
==
testlist_safe
||
TYPE
(
n
)
==
testlist1
);
seq
=
asdl_seq_new
((
NCH
(
n
)
+
1
)
/
2
,
c
->
c_arena
);
...
...
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