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
5f7e8dab
Kaydet (Commit)
5f7e8dab
authored
Ara 02, 2012
tarafından
Christian Heimes
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #16592: stringlib_bytes_join doesn't raise MemoryError on allocation failure
üst
17ad40e4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
NEWS
Misc/NEWS
+3
-0
join.h
Objects/stringlib/join.h
+1
-0
No files found.
Misc/NEWS
Dosyayı görüntüle @
5f7e8dab
...
...
@@ -10,6 +10,9 @@ What's New in Python 3.4.0 Alpha 1?
Core and Builtins
-----------------
- Issue #16592: stringlib_bytes_join doesn'
t
raise
MemoryError
on
allocation
failure
.
-
Issue
#
16546
:
Fix
:
ast
.
YieldFrom
argument
is
now
mandatory
.
-
Issue
#
16514
:
Fix
regression
causing
a
traceback
when
sys
.
path
[
0
]
is
None
...
...
Objects/stringlib/join.h
Dosyayı görüntüle @
5f7e8dab
...
...
@@ -43,6 +43,7 @@ STRINGLIB(bytes_join)(PyObject *sep, PyObject *iterable)
buffers
=
PyMem_NEW
(
Py_buffer
,
seqlen
);
if
(
buffers
==
NULL
)
{
Py_DECREF
(
seq
);
PyErr_NoMemory
();
return
NULL
;
}
}
...
...
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