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
80d3610b
Kaydet (Commit)
80d3610b
authored
Mar 06, 2011
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge fix for issue #11391
üst
d1b1991f
7b50c2c6
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
5 deletions
+22
-5
test_mmap.py
Lib/test/test_mmap.py
+8
-0
NEWS
Misc/NEWS
+4
-0
mmapmodule.c
Modules/mmapmodule.c
+10
-5
No files found.
Lib/test/test_mmap.py
Dosyayı görüntüle @
80d3610b
...
...
@@ -234,6 +234,14 @@ class MmapTests(unittest.TestCase):
flags
=
mmap
.
MAP_PRIVATE
,
prot
=
mmap
.
PROT_READ
,
access
=
mmap
.
ACCESS_WRITE
)
# Try writing with PROT_EXEC and without PROT_WRITE
prot
=
mmap
.
PROT_READ
|
getattr
(
mmap
,
'PROT_EXEC'
,
0
)
with
open
(
TESTFN
,
"r+b"
)
as
f
:
m
=
mmap
.
mmap
(
f
.
fileno
(),
mapsize
,
prot
=
prot
)
self
.
assertRaises
(
TypeError
,
m
.
write
,
b
"abcdef"
)
self
.
assertRaises
(
TypeError
,
m
.
write_byte
,
0
)
m
.
close
()
def
test_bad_file_desc
(
self
):
# Try opening a bad file descriptor...
self
.
assertRaises
(
mmap
.
error
,
mmap
.
mmap
,
-
2
,
4096
)
...
...
Misc/NEWS
Dosyayı görüntüle @
80d3610b
...
...
@@ -31,6 +31,10 @@ Core and Builtins
Library
-------
- Issue #11391: Writing to a mmap object created with
``mmap.PROT_READ|mmap.PROT_EXEC`` would segfault instead of raising a
TypeError. Patch by Charles-François Natali.
- Issue #11306: mailbox in certain cases adapts to an inability to open
certain files in read-write mode. Previously it detected this by
checking for EACCES, now it also checks for EROFS.
...
...
Modules/mmapmodule.c
Dosyayı görüntüle @
80d3610b
...
...
@@ -1106,17 +1106,22 @@ new_mmap_object(PyTypeObject *type, PyObject *args, PyObject *kwdict)
prot
=
PROT_READ
|
PROT_WRITE
;
break
;
case
ACCESS_DEFAULT
:
/* use the specified or default values of flags and prot */
/* map prot to access type */
if
((
prot
&
PROT_READ
)
&&
(
prot
&
PROT_WRITE
))
{
/* ACCESS_DEFAULT */
}
else
if
(
prot
&
PROT_WRITE
)
{
access
=
ACCESS_WRITE
;
}
else
{
access
=
ACCESS_READ
;
}
break
;
default:
return
PyErr_Format
(
PyExc_ValueError
,
"mmap invalid access parameter."
);
}
if
(
prot
==
PROT_READ
)
{
access
=
ACCESS_READ
;
}
#ifdef HAVE_FSTAT
# ifdef __VMS
/* on OpenVMS we must ensure that all bytes are written to the file */
...
...
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