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
26f55c29
Unverified
Kaydet (Commit)
26f55c29
authored
May 12, 2019
tarafından
Pablo Galindo
Kaydeden (comit)
GitHub
May 12, 2019
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-36817: Do not decrement reference for expr_text on fstring = parsing failure (GH-13256)
üst
5833e94d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
test_fstring.py
Lib/test/test_fstring.py
+2
-0
ast.c
Python/ast.c
+0
-1
No files found.
Lib/test/test_fstring.py
Dosyayı görüntüle @
26f55c29
...
...
@@ -1148,6 +1148,8 @@ non-important content
self
.
assertEqual
(
f
'{C()=:x}'
,
'C()=FORMAT-x'
)
self
.
assertEqual
(
f
'{C()=!r:*^20}'
,
'C()=********REPR********'
)
self
.
assertRaises
(
SyntaxError
,
eval
,
"f'{C=]'"
)
def
test_walrus
(
self
):
x
=
20
# This isn't an assignment expression, it's 'x', with a format
...
...
Python/ast.c
Dosyayı görüntüle @
26f55c29
...
...
@@ -5283,7 +5283,6 @@ unexpected_end_of_string:
/* Falls through to error. */
error:
Py_XDECREF
(
expr_text
);
return -1;
}
...
...
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