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
d693a815
Kaydet (Commit)
d693a815
authored
Haz 30, 2003
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix SF 762891: "del p[key]" on proxy object raises SystemError()
üst
562a855d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
49 additions
and
1 deletion
+49
-1
test_weakref.py
Lib/test/test_weakref.py
+11
-0
NEWS
Misc/NEWS
+33
-0
weakrefobject.c
Objects/weakrefobject.c
+5
-1
No files found.
Lib/test/test_weakref.py
Dosyayı görüntüle @
d693a815
...
...
@@ -226,6 +226,17 @@ class ReferencesTestCase(TestBase):
self
.
assert_
(
not
hasattr
(
o
,
'foo'
),
"object does not reflect attribute removal via proxy"
)
def
test_proxy_deletion
(
self
):
# Test clearing of SF bug #762891
class
Foo
:
result
=
None
def
__delitem__
(
self
,
accessor
):
self
.
result
=
accessor
g
=
Foo
()
f
=
weakref
.
proxy
(
g
)
del
f
[
0
]
self
.
assertEqual
(
f
.
result
,
0
)
def
test_getweakrefcount
(
self
):
o
=
C
()
ref1
=
weakref
.
ref
(
o
)
...
...
Misc/NEWS
Dosyayı görüntüle @
d693a815
...
...
@@ -4,6 +4,39 @@ Python News
(
editors
:
check
NEWS
.
help
for
information
about
editing
NEWS
using
ReST
.)
What
's New in Python 2.3 release candidate?
===========================================
Core and builtins
-----------------
Extension modules
-----------------
- weakref.proxy() can now handle "del obj[i]" for proxy objects
defining __delitem__. Formerly, it generated a SystemError.
- SSL no longer crashes the interpreter when the remote side disconnects.
Library
-------
Tools/Demos
-----------
Build
-----
C API
-----
Windows
-------
Mac
---
What'
s
New
in
Python
2.3
beta
2
?
================================
...
...
Objects/weakrefobject.c
Dosyayı görüntüle @
d693a815
...
...
@@ -389,7 +389,11 @@ proxy_setitem(PyWeakReference *proxy, PyObject *key, PyObject *value)
{
if
(
!
proxy_checkref
(
proxy
))
return
-
1
;
return
PyObject_SetItem
(
PyWeakref_GET_OBJECT
(
proxy
),
key
,
value
);
if
(
value
==
NULL
)
return
PyObject_DelItem
(
PyWeakref_GET_OBJECT
(
proxy
),
key
);
else
return
PyObject_SetItem
(
PyWeakref_GET_OBJECT
(
proxy
),
key
,
value
);
}
/* iterator slots */
...
...
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