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
c5e060de
Kaydet (Commit)
c5e060de
authored
Agu 02, 2006
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
_PyWeakref_GetWeakrefCount() now returns a Py_ssize_t instead of long.
üst
5fb9c20f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
6 deletions
+9
-6
weakrefobject.h
Include/weakrefobject.h
+1
-1
NEWS
Misc/NEWS
+3
-0
_weakref.c
Modules/_weakref.c
+3
-3
weakrefobject.c
Objects/weakrefobject.c
+2
-2
No files found.
Include/weakrefobject.h
Dosyayı görüntüle @
c5e060de
...
...
@@ -62,7 +62,7 @@ PyAPI_FUNC(PyObject *) PyWeakref_NewProxy(PyObject *ob,
PyObject
*
callback
);
PyAPI_FUNC
(
PyObject
*
)
PyWeakref_GetObject
(
PyObject
*
ref
);
PyAPI_FUNC
(
long
)
_PyWeakref_GetWeakrefCount
(
PyWeakReference
*
head
);
PyAPI_FUNC
(
Py_ssize_t
)
_PyWeakref_GetWeakrefCount
(
PyWeakReference
*
head
);
PyAPI_FUNC
(
void
)
_PyWeakref_ClearRef
(
PyWeakReference
*
self
);
...
...
Misc/NEWS
Dosyayı görüntüle @
c5e060de
...
...
@@ -12,6 +12,9 @@ What's New in Python 2.5 beta 3?
Core and builtins
-----------------
- _PyWeakref_GetWeakrefCount() now returns a Py_ssize_t, it previously
returned a long (see PEP 353).
- Bug #1515471: string.replace() accepts character buffers again.
- Add PyErr_WarnEx() so C code can pass the stacklevel to warnings.warn().
...
...
Modules/_weakref.c
Dosyayı görüntüle @
c5e060de
...
...
@@ -17,7 +17,7 @@ weakref_getweakrefcount(PyObject *self, PyObject *object)
if
(
PyType_SUPPORTS_WEAKREFS
(
object
->
ob_type
))
{
PyWeakReference
**
list
=
GET_WEAKREFS_LISTPTR
(
object
);
result
=
PyInt_From
Long
(
_PyWeakref_GetWeakrefCount
(
*
list
));
result
=
PyInt_From
Ssize_t
(
_PyWeakref_GetWeakrefCount
(
*
list
));
}
else
result
=
PyInt_FromLong
(
0
);
...
...
@@ -37,12 +37,12 @@ weakref_getweakrefs(PyObject *self, PyObject *object)
if
(
PyType_SUPPORTS_WEAKREFS
(
object
->
ob_type
))
{
PyWeakReference
**
list
=
GET_WEAKREFS_LISTPTR
(
object
);
long
count
=
_PyWeakref_GetWeakrefCount
(
*
list
);
Py_ssize_t
count
=
_PyWeakref_GetWeakrefCount
(
*
list
);
result
=
PyList_New
(
count
);
if
(
result
!=
NULL
)
{
PyWeakReference
*
current
=
*
list
;
long
i
;
Py_ssize_t
i
;
for
(
i
=
0
;
i
<
count
;
++
i
)
{
PyList_SET_ITEM
(
result
,
i
,
(
PyObject
*
)
current
);
Py_INCREF
(
current
);
...
...
Objects/weakrefobject.c
Dosyayı görüntüle @
c5e060de
...
...
@@ -6,10 +6,10 @@
((PyWeakReference **) PyObject_GET_WEAKREFS_LISTPTR(o))
long
Py_ssize_t
_PyWeakref_GetWeakrefCount
(
PyWeakReference
*
head
)
{
long
count
=
0
;
Py_ssize_t
count
=
0
;
while
(
head
!=
NULL
)
{
++
count
;
...
...
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