Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
691d8053
Commit
691d8053
authored
May 30, 2004
by
Raymond Hettinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make sets and deques weak referencable.
parent
d70ad8a9
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
32 additions
and
6 deletions
+32
-6
Include/setobject.h
Include/setobject.h
+1
-0
Lib/test/test_deque.py
Lib/test/test_deque.py
+7
-0
Lib/test/test_set.py
Lib/test/test_set.py
+8
-0
Modules/collectionsmodule.c
Modules/collectionsmodule.c
+8
-2
Objects/setobject.c
Objects/setobject.c
+8
-4
No files found.
Include/setobject.h
View file @
691d8053
...
...
@@ -15,6 +15,7 @@ typedef struct {
PyObject_HEAD
PyObject
*
data
;
long
hash
;
/* only used by frozenset objects */
PyObject
*
weakreflist
;
/* List of weak references */
}
PySetObject
;
PyAPI_DATA
(
PyTypeObject
)
PySet_Type
;
...
...
Lib/test/test_deque.py
View file @
691d8053
from
collections
import
deque
import
unittest
from
test
import
test_support
from
weakref
import
proxy
import
copy
import
cPickle
as
pickle
from
cStringIO
import
StringIO
...
...
@@ -435,6 +436,12 @@ class TestSubclass(unittest.TestCase):
self
.
assertEqual
(
type
(
d
),
type
(
e
))
self
.
assertEqual
(
list
(
d
),
list
(
e
))
def
test_weakref
(
self
):
d
=
deque
(
'gallahad'
)
p
=
proxy
(
d
)
self
.
assertEqual
(
str
(
p
),
str
(
d
))
d
=
None
self
.
assertRaises
(
ReferenceError
,
str
,
p
)
#==============================================================================
...
...
Lib/test/test_set.py
View file @
691d8053
import
unittest
from
test
import
test_support
from
weakref
import
proxy
import
operator
import
copy
import
pickle
...
...
@@ -346,6 +347,13 @@ class TestSet(TestJointOps):
else
:
self
.
assert_
(
c
not
in
self
.
s
)
def
test_weakref
(
self
):
s
=
self
.
thetype
(
'gallahad'
)
p
=
proxy
(
s
)
self
.
assertEqual
(
str
(
p
),
str
(
s
))
s
=
None
self
.
assertRaises
(
ReferenceError
,
str
,
p
)
class
SetSubclass
(
set
):
pass
...
...
Modules/collectionsmodule.c
View file @
691d8053
#include "Python.h"
#include "structmember.h"
/* collections module implementation of a deque() datatype
Written and maintained by Raymond D. Hettinger <python@rcn.com>
...
...
@@ -32,6 +33,7 @@ typedef struct {
int
leftindex
;
int
rightindex
;
int
len
;
PyObject
*
weakreflist
;
/* List of weak references */
}
dequeobject
;
static
PyTypeObject
deque_type
;
...
...
@@ -58,6 +60,7 @@ deque_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
deque
->
leftindex
=
BLOCKLEN
/
2
+
1
;
deque
->
rightindex
=
BLOCKLEN
/
2
;
deque
->
len
=
0
;
deque
->
weakreflist
=
NULL
;
return
(
PyObject
*
)
deque
;
}
...
...
@@ -439,6 +442,8 @@ static void
deque_dealloc
(
dequeobject
*
deque
)
{
PyObject_GC_UnTrack
(
deque
);
if
(
deque
->
weakreflist
!=
NULL
)
PyObject_ClearWeakRefs
((
PyObject
*
)
deque
);
if
(
deque
->
leftblock
!=
NULL
)
{
int
err
=
deque_clear
(
deque
);
assert
(
err
==
0
);
...
...
@@ -744,12 +749,13 @@ static PyTypeObject deque_type = {
PyObject_GenericGetAttr
,
/* tp_getattro */
0
,
/* tp_setattro */
0
,
/* tp_as_buffer */
Py_TPFLAGS_DEFAULT
|
Py_TPFLAGS_BASETYPE
|
Py_TPFLAGS_HAVE_GC
,
/* tp_flags */
Py_TPFLAGS_DEFAULT
|
Py_TPFLAGS_BASETYPE
|
Py_TPFLAGS_HAVE_GC
|
Py_TPFLAGS_HAVE_WEAKREFS
,
/* tp_flags */
deque_doc
,
/* tp_doc */
(
traverseproc
)
deque_traverse
,
/* tp_traverse */
(
inquiry
)
deque_clear
,
/* tp_clear */
(
richcmpfunc
)
deque_richcompare
,
/* tp_richcompare */
0
,
/* tp_weaklistoffset*/
offsetof
(
dequeobject
,
weakreflist
),
/* tp_weaklistoffset*/
(
getiterfunc
)
deque_iter
,
/* tp_iter */
0
,
/* tp_iternext */
deque_methods
,
/* tp_methods */
...
...
Objects/setobject.c
View file @
691d8053
#include "Python.h"
#include "structmember.h"
/* set object implementation
written and maintained by Raymond D. Hettinger <python@rcn.com>
...
...
@@ -61,6 +62,7 @@ make_new_set(PyTypeObject *type, PyObject *iterable)
}
so
->
data
=
data
;
so
->
hash
=
-
1
;
so
->
weakreflist
=
NULL
;
if
(
iterable
!=
NULL
)
{
tmp
=
set_update
(
so
,
iterable
);
...
...
@@ -113,6 +115,8 @@ static void
set_dealloc
(
PySetObject
*
so
)
{
PyObject_GC_UnTrack
(
so
);
if
(
so
->
weakreflist
!=
NULL
)
PyObject_ClearWeakRefs
((
PyObject
*
)
so
);
Py_XDECREF
(
so
->
data
);
so
->
ob_type
->
tp_free
(
so
);
}
...
...
@@ -1009,12 +1013,12 @@ PyTypeObject PySet_Type = {
0
,
/* tp_setattro */
0
,
/* tp_as_buffer */
Py_TPFLAGS_DEFAULT
|
Py_TPFLAGS_HAVE_GC
|
Py_TPFLAGS_CHECKTYPES
|
Py_TPFLAGS_BASETYPE
,
/* tp_flags */
Py_TPFLAGS_BASETYPE
|
Py_TPFLAGS_HAVE_WEAKREFS
,
/* tp_flags */
set_doc
,
/* tp_doc */
(
traverseproc
)
set_traverse
,
/* tp_traverse */
(
inquiry
)
set_tp_clear
,
/* tp_clear */
(
richcmpfunc
)
set_richcompare
,
/* tp_richcompare */
0
,
/* tp_weaklistoffset */
offsetof
(
PySetObject
,
weakreflist
),
/* tp_weaklistoffset */
(
getiterfunc
)
set_iter
,
/* tp_iter */
0
,
/* tp_iternext */
set_methods
,
/* tp_methods */
...
...
@@ -1104,12 +1108,12 @@ PyTypeObject PyFrozenSet_Type = {
0
,
/* tp_setattro */
0
,
/* tp_as_buffer */
Py_TPFLAGS_DEFAULT
|
Py_TPFLAGS_HAVE_GC
|
Py_TPFLAGS_CHECKTYPES
|
Py_TPFLAGS_BASETYPE
,
/* tp_flags */
Py_TPFLAGS_BASETYPE
|
Py_TPFLAGS_HAVE_WEAKREFS
,
/* tp_flags */
frozenset_doc
,
/* tp_doc */
(
traverseproc
)
set_traverse
,
/* tp_traverse */
0
,
/* tp_clear */
(
richcmpfunc
)
set_richcompare
,
/* tp_richcompare */
0
,
/* tp_weaklistoffset */
offsetof
(
PySetObject
,
weakreflist
),
/* tp_weaklistoffset */
(
getiterfunc
)
set_iter
,
/* tp_iter */
0
,
/* tp_iternext */
frozenset_methods
,
/* tp_methods */
...
...
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