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
fcce462e
Kaydet (Commit)
fcce462e
authored
May 04, 2016
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #26811: gc.get_objects() no longer contains a broken tuple with NULL
pointer.
üst
ad039f75
7822f151
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
13 deletions
+16
-13
NEWS
Misc/NEWS
+3
-0
descrobject.c
Objects/descrobject.c
+13
-13
No files found.
Misc/NEWS
Dosyayı görüntüle @
fcce462e
...
...
@@ -10,6 +10,9 @@ Release date: tba
Core and Builtins
-----------------
- Issue #26811: gc.get_objects() no longer contains a broken tuple with NULL
pointer.
- Issue #20120: Use RawConfigParser for .pypirc parsing,
removing support for interpolation unintentionally added
with move to Python 3. Behavior no longer does any
...
...
Objects/descrobject.c
Dosyayı görüntüle @
fcce462e
...
...
@@ -1386,27 +1386,27 @@ property_descr_get(PyObject *self, PyObject *obj, PyObject *type)
return
NULL
;
}
args
=
cached_args
;
if
(
!
args
||
Py_REFCNT
(
args
)
!=
1
)
{
Py_CLEAR
(
cached_args
);
if
(
!
(
cached_args
=
args
=
PyTuple_New
(
1
)))
cached_args
=
NULL
;
if
(
!
args
)
{
args
=
PyTuple_New
(
1
);
if
(
!
args
)
return
NULL
;
_PyObject_GC_UNTRACK
(
args
);
}
Py_INCREF
(
args
);
assert
(
Py_REFCNT
(
args
)
==
2
);
Py_INCREF
(
obj
);
PyTuple_SET_ITEM
(
args
,
0
,
obj
);
ret
=
PyObject_Call
(
gs
->
prop_get
,
args
,
NULL
);
if
(
args
==
cached_args
)
{
if
(
Py_REFCNT
(
args
)
==
2
)
{
obj
=
PyTuple_GET_ITEM
(
args
,
0
);
PyTuple_SET_ITEM
(
args
,
0
,
NULL
)
;
Py_X
DECREF
(
obj
);
if
(
cached_args
==
NULL
&&
Py_REFCNT
(
args
)
==
1
)
{
assert
(
Py_SIZE
(
args
)
==
1
);
assert
(
PyTuple_GET_ITEM
(
args
,
0
)
==
obj
);
cached_args
=
args
;
Py_
DECREF
(
obj
);
}
else
{
Py_CLEAR
(
cached_args
);
}
}
assert
(
Py_REFCNT
(
args
)
>=
1
);
_PyObject_GC_TRACK
(
args
);
Py_DECREF
(
args
);
}
return
ret
;
}
...
...
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