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
b60654bc
Kaydet (Commit)
b60654bc
authored
Şub 26, 2001
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
The return value from PyObject_ClearWeakRefs() is no longer meaningful,
so make it void.
üst
4f9b13ba
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
9 deletions
+8
-9
object.h
Include/object.h
+1
-1
_weakref.c
Modules/_weakref.c
+3
-3
classobject.c
Objects/classobject.c
+1
-2
object.c
Objects/object.c
+3
-3
No files found.
Include/object.h
Dosyayı görüntüle @
b60654bc
...
...
@@ -284,7 +284,7 @@ extern DL_IMPORT(int) PyCallable_Check(PyObject *);
extern
DL_IMPORT
(
int
)
PyNumber_Coerce
(
PyObject
**
,
PyObject
**
);
extern
DL_IMPORT
(
int
)
PyNumber_CoerceEx
(
PyObject
**
,
PyObject
**
);
extern
DL_IMPORT
(
int
)
(
*
PyObject_ClearWeakRefs
)(
PyObject
*
);
extern
DL_IMPORT
(
void
)
(
*
PyObject_ClearWeakRefs
)(
PyObject
*
);
/* Helpers for printing recursive container types */
extern
DL_IMPORT
(
int
)
Py_ReprEnter
(
PyObject
*
);
...
...
Modules/_weakref.c
Dosyayı görüntüle @
b60654bc
...
...
@@ -692,7 +692,7 @@ weakref_proxy(PyObject *self, PyObject *args)
* until one resurrects the object, at which point it stops invalidating
* weak references and returns false.
*/
static
int
static
cleanup_helper
(
PyObject
*
object
)
{
PyWeakReference
**
list
;
...
...
@@ -702,7 +702,7 @@ cleanup_helper(PyObject *object)
||
object
->
ob_refcnt
!=
0
)
{
PyErr_BadInternalCall
();
/* not sure what we should return here */
return
1
;
return
;
}
list
=
GET_WEAKREFS_LISTPTR
(
object
);
while
(
*
list
!=
NULL
)
{
...
...
@@ -722,7 +722,7 @@ cleanup_helper(PyObject *object)
Py_DECREF
(
callback
);
}
}
return
(
object
->
ob_refcnt
>
0
?
0
:
1
)
;
return
;
}
...
...
Objects/classobject.c
Dosyayı görüntüle @
b60654bc
...
...
@@ -516,8 +516,7 @@ instance_dealloc(register PyInstanceObject *inst)
extern
long
_Py_RefTotal
;
#endif
if
(
!
PyObject_ClearWeakRefs
((
PyObject
*
)
inst
))
return
;
PyObject_ClearWeakRefs
((
PyObject
*
)
inst
);
/* Temporarily resurrect the object. */
#ifdef Py_TRACE_REFS
...
...
Objects/object.c
Dosyayı görüntüle @
b60654bc
...
...
@@ -1475,13 +1475,13 @@ PyObject_Free(void *p)
call site instead of requiring a test for NULL.
*/
static
int
static
void
empty_clear_weak_refs
(
PyObject
*
o
)
{
return
1
;
return
;
}
int
(
*
PyObject_ClearWeakRefs
)(
PyObject
*
)
=
empty_clear_weak_refs
;
void
(
*
PyObject_ClearWeakRefs
)(
PyObject
*
)
=
empty_clear_weak_refs
;
...
...
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