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
5833e94d
Unverified
Kaydet (Commit)
5833e94d
authored
May 11, 2019
tarafından
Pablo Galindo
Kaydeden (comit)
GitHub
May 11, 2019
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-36817: Fix reference leak for expr_text in f-string = parsing (GH-13249)
üst
90fb04c1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
ast.c
Python/ast.c
+7
-2
No files found.
Python/ast.c
Dosyayı görüntüle @
5833e94d
...
...
@@ -5228,10 +5228,15 @@ fstring_find_expr(const char **str, const char *end, int raw, int recurse_lvl,
}
if
(
equal_flag
)
{
Py_ssize_t
len
=
expr_text_end
-
expr_start
;
Py_ssize_t
len
=
expr_text_end
-
expr_start
;
expr_text
=
PyUnicode_FromStringAndSize
(
expr_start
,
len
);
if
(
!
expr_text
)
if
(
!
expr_text
)
{
goto
error
;
}
if
(
PyArena_AddPyObject
(
c
->
c_arena
,
expr_text
)
<
0
)
{
Py_DECREF
(
expr_text
);
goto
error
;
}
}
/* Check for the format spec, if present. */
...
...
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