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
a57df2cf
Kaydet (Commit)
a57df2cf
authored
15 years ago
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #8268: Old-style classes (not just instances) now support weak
references.
üst
26cc99da
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
29 additions
and
2 deletions
+29
-2
classobject.h
Include/classobject.h
+1
-0
test_sys.py
Lib/test/test_sys.py
+1
-1
test_weakref.py
Lib/test/test_weakref.py
+20
-0
NEWS
Misc/NEWS
+3
-0
classobject.c
Objects/classobject.c
+4
-1
No files found.
Include/classobject.h
Dosyayı görüntüle @
a57df2cf
...
...
@@ -18,6 +18,7 @@ typedef struct {
PyObject
*
cl_getattr
;
PyObject
*
cl_setattr
;
PyObject
*
cl_delattr
;
PyObject
*
cl_weakreflist
;
/* List of weak references */
}
PyClassObject
;
typedef
struct
{
...
...
This diff is collapsed.
Click to expand it.
Lib/test/test_sys.py
Dosyayı görüntüle @
a57df2cf
...
...
@@ -544,7 +544,7 @@ class SizeofTest(unittest.TestCase):
class
class_oldstyle
():
def
method
():
pass
check
(
class_oldstyle
,
size
(
h
+
'
6
P'
))
check
(
class_oldstyle
,
size
(
h
+
'
7
P'
))
# instance (old-style class)
check
(
class_oldstyle
(),
size
(
h
+
'3P'
))
# instancemethod (old-style class)
...
...
This diff is collapsed.
Click to expand it.
Lib/test/test_weakref.py
Dosyayı görüntüle @
a57df2cf
...
...
@@ -685,6 +685,26 @@ class ReferencesTestCase(TestBase):
# No exception should be raised here
gc
.
collect
()
def
test_classes
(
self
):
# Check that both old-style classes and new-style classes
# are weakrefable.
class
A
(
object
):
pass
class
B
:
pass
l
=
[]
weakref
.
ref
(
int
)
a
=
weakref
.
ref
(
A
,
l
.
append
)
A
=
None
gc
.
collect
()
self
.
assertEqual
(
a
(),
None
)
self
.
assertEqual
(
l
,
[
a
])
b
=
weakref
.
ref
(
B
,
l
.
append
)
B
=
None
gc
.
collect
()
self
.
assertEqual
(
b
(),
None
)
self
.
assertEqual
(
l
,
[
a
,
b
])
class
SubclassableWeakrefTestCase
(
TestBase
):
...
...
This diff is collapsed.
Click to expand it.
Misc/NEWS
Dosyayı görüntüle @
a57df2cf
...
...
@@ -12,6 +12,9 @@ What's New in Python 2.7 beta 1?
Core and Builtins
-----------------
- Issue #8268: Old-style classes (not just instances) now support weak
references.
- Issue #8211: Save/restore CFLAGS around AC_PROG_CC in configure.in, compiler
optimizations are disabled when --with-pydebug is used.
...
...
This diff is collapsed.
Click to expand it.
Objects/classobject.c
Dosyayı görüntüle @
a57df2cf
...
...
@@ -123,6 +123,7 @@ alloc_error:
op
->
cl_dict
=
dict
;
Py_XINCREF
(
name
);
op
->
cl_name
=
name
;
op
->
cl_weakreflist
=
NULL
;
op
->
cl_getattr
=
class_lookup
(
op
,
getattrstr
,
&
dummy
);
op
->
cl_setattr
=
class_lookup
(
op
,
setattrstr
,
&
dummy
);
...
...
@@ -188,6 +189,8 @@ static void
class_dealloc
(
PyClassObject
*
op
)
{
_PyObject_GC_UNTRACK
(
op
);
if
(
op
->
cl_weakreflist
!=
NULL
)
PyObject_ClearWeakRefs
((
PyObject
*
)
op
);
Py_DECREF
(
op
->
cl_bases
);
Py_DECREF
(
op
->
cl_dict
);
Py_XDECREF
(
op
->
cl_name
);
...
...
@@ -454,7 +457,7 @@ PyTypeObject PyClass_Type = {
(
traverseproc
)
class_traverse
,
/* tp_traverse */
0
,
/* tp_clear */
0
,
/* tp_richcompare */
0
,
/* tp_weaklistoffset */
offsetof
(
PyClassObject
,
cl_weakreflist
),
/* tp_weaklistoffset */
0
,
/* tp_iter */
0
,
/* tp_iternext */
0
,
/* tp_methods */
...
...
This diff is collapsed.
Click to expand it.
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