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
9a633865
Commit
9a633865
authored
Mar 07, 2012
by
Benjamin Peterson
Browse files
Options
Browse Files
Download
Plain Diff
merge 3.2 (#3787e896dbe9)
parents
657e9ebe
52c42434
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
4 deletions
+27
-4
Lib/test/test_descr.py
Lib/test/test_descr.py
+17
-2
Misc/NEWS
Misc/NEWS
+3
-0
Objects/typeobject.c
Objects/typeobject.c
+7
-2
No files found.
Lib/test/test_descr.py
View file @
9a633865
import
builtins
import
gc
import
sys
import
types
import
math
import
unittest
import
weakref
from
copy
import
deepcopy
from
test
import
support
...
...
@@ -1186,7 +1188,6 @@ order (MRO) for bases """
self
.
assertEqual
(
Counted
.
counter
,
0
)
# Test lookup leaks [SF bug 572567]
import
gc
if
hasattr
(
gc
,
'get_objects'
):
class
G
(
object
):
def
__eq__
(
self
,
other
):
...
...
@@ -4387,7 +4388,6 @@ order (MRO) for bases """
self
.
assertRaises
(
AttributeError
,
getattr
,
C
(),
"attr"
)
self
.
assertEqual
(
descr
.
counter
,
4
)
import
gc
class
EvilGetattribute
(
object
):
# This used to segfault
def
__getattr__
(
self
,
name
):
...
...
@@ -4484,6 +4484,21 @@ order (MRO) for bases """
ns
=
{
'__qualname__'
:
1
}
self
.
assertRaises
(
TypeError
,
type
,
'Foo'
,
(),
ns
)
def
test_cycle_through_dict
(
self
):
# See bug #1469629
class
X
(
dict
):
def
__init__
(
self
):
dict
.
__init__
(
self
)
self
.
__dict__
=
self
x
=
X
()
x
.
attr
=
42
wr
=
weakref
.
ref
(
x
)
del
x
support
.
gc_collect
()
self
.
assertIsNone
(
wr
())
for
o
in
gc
.
get_objects
():
self
.
assertIsNot
(
type
(
o
),
X
)
class
DictProxyTests
(
unittest
.
TestCase
):
def
setUp
(
self
):
...
...
Misc/NEWS
View file @
9a633865
...
...
@@ -10,6 +10,9 @@ What's New in Python 3.3.0 Alpha 2?
Core and Builtins
-----------------
- Issue #1469629: Allow cycles through an object'
s
__dict__
slot
to
be
collected
.
(
For
example
if
``
x
.
__dict__
is
x
``).
-
Issue
#
14205
:
dict
lookup
raises
a
RuntimeError
if
the
dict
is
modified
during
a
lookup
.
...
...
Objects/typeobject.c
View file @
9a633865
...
...
@@ -862,8 +862,13 @@ subtype_clear(PyObject *self)
assert
(
base
);
}
/* There's no need to clear the instance dict (if any);
the collector will call its tp_clear handler. */
/* Clear the instance dict (if any), to break cycles involving only
__dict__ slots (as in the case 'self.__dict__ is self'). */
if
(
type
->
tp_dictoffset
!=
base
->
tp_dictoffset
)
{
PyObject
**
dictptr
=
_PyObject_GetDictPtr
(
self
);
if
(
dictptr
&&
*
dictptr
)
Py_CLEAR
(
*
dictptr
);
}
if
(
baseclear
)
return
baseclear
(
self
);
...
...
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