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
c53204b9
Kaydet (Commit)
c53204b9
authored
Agu 05, 2013
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #4885: Add weakref support to mmap objects. Patch by Valerie Lambert.
üst
914061ab
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
23 additions
and
3 deletions
+23
-3
test_mmap.py
Lib/test/test_mmap.py
+11
-1
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+4
-1
mmapmodule.c
Modules/mmapmodule.c
+7
-1
No files found.
Lib/test/test_mmap.py
Dosyayı görüntüle @
c53204b9
from
test.support
import
(
TESTFN
,
run_unittest
,
import_module
,
unlink
,
requires
,
_2G
,
_4G
)
requires
,
_2G
,
_4G
,
gc_collect
)
import
unittest
import
os
import
re
import
itertools
import
socket
import
sys
import
weakref
# Skip test if we can't import mmap.
mmap
=
import_module
(
'mmap'
)
...
...
@@ -692,6 +693,15 @@ class MmapTests(unittest.TestCase):
"wrong exception raised in context manager"
)
self
.
assertTrue
(
m
.
closed
,
"context manager failed"
)
def
test_weakref
(
self
):
# Check mmap objects are weakrefable
mm
=
mmap
.
mmap
(
-
1
,
16
)
wr
=
weakref
.
ref
(
mm
)
self
.
assertIs
(
wr
(),
mm
)
del
mm
gc_collect
()
self
.
assertIs
(
wr
(),
None
)
class
LargeMmapTests
(
unittest
.
TestCase
):
def
setUp
(
self
):
...
...
Misc/ACKS
Dosyayı görüntüle @
c53204b9
...
...
@@ -701,6 +701,7 @@ Ross Lagerwall
Cameron Laird
David Lam
Thomas Lamb
Valerie Lambert
Jean-Baptiste "Jiba" Lamy
Ronan Lamy
Torsten Landschoff
...
...
Misc/NEWS
Dosyayı görüntüle @
c53204b9
...
...
@@ -13,7 +13,10 @@ Core and Builtins
Library
-------
- Issue 8860: Fixed rounding in timedelta constructor.
- Issue #4885: Add weakref support to mmap objects. Patch by Valerie Lambert.
- Issue #8860: Fixed rounding in timedelta constructor.
What'
s
New
in
Python
3.4.0
Alpha
1
?
===================================
...
...
Modules/mmapmodule.c
Dosyayı görüntüle @
c53204b9
...
...
@@ -20,6 +20,7 @@
#define PY_SSIZE_T_CLEAN
#include <Python.h>
#include "structmember.h"
#ifndef MS_WINDOWS
#define UNIX
...
...
@@ -108,6 +109,7 @@ typedef struct {
int
fd
;
#endif
PyObject
*
weakreflist
;
access_mode
access
;
}
mmap_object
;
...
...
@@ -134,6 +136,8 @@ mmap_object_dealloc(mmap_object *m_obj)
}
#endif
/* UNIX */
if
(
m_obj
->
weakreflist
!=
NULL
)
PyObject_ClearWeakRefs
((
PyObject
*
)
m_obj
);
Py_TYPE
(
m_obj
)
->
tp_free
((
PyObject
*
)
m_obj
);
}
...
...
@@ -1032,7 +1036,7 @@ static PyTypeObject mmap_object_type = {
0
,
/* tp_traverse */
0
,
/* tp_clear */
0
,
/* tp_richcompare */
0
,
/* tp_weaklistoffset */
offsetof
(
mmap_object
,
weakreflist
),
/* tp_weaklistoffset */
0
,
/* tp_iter */
0
,
/* tp_iternext */
mmap_object_methods
,
/* tp_methods */
...
...
@@ -1190,6 +1194,7 @@ new_mmap_object(PyTypeObject *type, PyObject *args, PyObject *kwdict)
m_obj
->
data
=
NULL
;
m_obj
->
size
=
(
size_t
)
map_size
;
m_obj
->
pos
=
(
size_t
)
0
;
m_obj
->
weakreflist
=
NULL
;
m_obj
->
exports
=
0
;
m_obj
->
offset
=
offset
;
if
(
fd
==
-
1
)
{
...
...
@@ -1394,6 +1399,7 @@ new_mmap_object(PyTypeObject *type, PyObject *args, PyObject *kwdict)
/* set the initial position */
m_obj
->
pos
=
(
size_t
)
0
;
m_obj
->
weakreflist
=
NULL
;
m_obj
->
exports
=
0
;
/* set the tag name */
if
(
tagname
!=
NULL
&&
*
tagname
!=
'\0'
)
{
...
...
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