diff options
Diffstat (limited to 'lang/python/files/patch-Include::weakrefobject.h')
-rw-r--r-- | lang/python/files/patch-Include::weakrefobject.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lang/python/files/patch-Include::weakrefobject.h b/lang/python/files/patch-Include::weakrefobject.h new file mode 100644 index 000000000000..c3d47e307279 --- /dev/null +++ b/lang/python/files/patch-Include::weakrefobject.h @@ -0,0 +1,11 @@ +--- Include/weakrefobject.h.orig Mon Aug 12 16:21:58 2002 ++++ Include/weakrefobject.h Fri Nov 21 11:39:53 2003 +@@ -39,6 +39,8 @@ + + PyAPI_FUNC(long) _PyWeakref_GetWeakrefCount(PyWeakReference *head); + ++PyAPI_FUNC(void) _PyWeakref_ClearRef(PyWeakReference *self); ++ + #define PyWeakref_GET_OBJECT(ref) (((PyWeakReference *)(ref))->wr_object) + + |