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
1119a649
Kaydet (Commit)
1119a649
authored
Ock 17, 2010
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #7561: Fix crashes when using bytearray objects with the posix
module.
üst
4c1718c0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
1 deletion
+13
-1
test_os.py
Lib/test/test_os.py
+9
-0
NEWS
Misc/NEWS
+3
-0
posixmodule.c
Modules/posixmodule.c
+1
-1
No files found.
Lib/test/test_os.py
Dosyayı görüntüle @
1119a649
...
...
@@ -564,6 +564,14 @@ class ExecTests(unittest.TestCase):
def
test_execvpe_with_bad_arglist
(
self
):
self
.
assertRaises
(
ValueError
,
os
.
execvpe
,
'notepad'
,
[],
None
)
class
ArgTests
(
unittest
.
TestCase
):
def
test_bytearray
(
self
):
# Issue #7561: posix module didn't release bytearray exports properly.
b
=
bytearray
(
os
.
sep
.
encode
(
'ascii'
))
self
.
assertRaises
(
OSError
,
os
.
mkdir
,
b
)
# Check object is still resizable.
b
[:]
=
b
''
class
Win32ErrorTests
(
unittest
.
TestCase
):
def
test_rename
(
self
):
self
.
assertRaises
(
WindowsError
,
os
.
rename
,
support
.
TESTFN
,
support
.
TESTFN
+
".bak"
)
...
...
@@ -750,6 +758,7 @@ else:
def
test_main
():
support
.
run_unittest
(
ArgTests
,
FileTests
,
StatAttributeTests
,
EnvironTests
,
...
...
Misc/NEWS
Dosyayı görüntüle @
1119a649
...
...
@@ -223,6 +223,9 @@ C-API
Library
-------
- Issue #7561: Fix crashes when using bytearray objects with the posix
module.
- Issue #1670765: Prevent email.generator.Generator from re-wrapping
headers in multipart/signed MIME parts, which fixes one of the sources of
invalid modifications to such parts by Generator.
...
...
Modules/posixmodule.c
Dosyayı görüntüle @
1119a649
...
...
@@ -580,7 +580,7 @@ static void
release_bytes
(
PyObject
*
o
)
{
if
(
PyByteArray_Check
(
o
))
o
->
ob_type
->
tp_as_buffer
->
bf_releasebuffer
(
NULL
,
0
);
o
->
ob_type
->
tp_as_buffer
->
bf_releasebuffer
(
o
,
0
);
Py_DECREF
(
o
);
}
...
...
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