mirror of
https://github.com/python/cpython.git
synced 2024-11-28 16:45:42 +01:00
4009c9edfc
svn+ssh://svn.python.org/python/branches/py3k ........ r82805 | georg.brandl | 2010-07-11 11:42:10 +0200 (So, 11 Jul 2010) | 1 line #7935: cross-reference to ast.literal_eval() from eval() docs. ........ r82806 | georg.brandl | 2010-07-11 12:22:44 +0200 (So, 11 Jul 2010) | 1 line #9223: link to Command class reference, and move Command interface docs nearer to class docs. ........ r83523 | georg.brandl | 2010-08-02 14:06:18 +0200 (Mo, 02 Aug 2010) | 1 line #9209 and #7781: fix two crashes in pstats interactive browser. ........ r83524 | georg.brandl | 2010-08-02 14:20:23 +0200 (Mo, 02 Aug 2010) | 1 line #9428: fix running scripts from profile/cProfile with their own name and the right namespace. Same fix as for trace.py in #1690103. ........ r83525 | georg.brandl | 2010-08-02 14:36:24 +0200 (Mo, 02 Aug 2010) | 1 line Get rid of spurious "threading" entries in trace output. ........ r83526 | georg.brandl | 2010-08-02 14:40:22 +0200 (Mo, 02 Aug 2010) | 1 line Fix softspace relic. ........ r83527 | georg.brandl | 2010-08-02 14:48:46 +0200 (Mo, 02 Aug 2010) | 1 line #3821: beginnings of a trace.py unittest. ........ r83536 | georg.brandl | 2010-08-02 19:49:25 +0200 (Mo, 02 Aug 2010) | 1 line #8578: mention danger of not incref'ing weak referenced object. ........ r83538 | georg.brandl | 2010-08-02 20:10:13 +0200 (Mo, 02 Aug 2010) | 1 line #6928: fix class docs w.r.t. new metaclasses. ........ r83542 | georg.brandl | 2010-08-02 20:56:54 +0200 (Mo, 02 Aug 2010) | 1 line Move test_SimpleHTTPServer into test_httpservers. ........ r83546 | georg.brandl | 2010-08-02 21:16:34 +0200 (Mo, 02 Aug 2010) | 1 line #7973: Fix distutils options spelling. ........ r83547 | georg.brandl | 2010-08-02 21:19:26 +0200 (Mo, 02 Aug 2010) | 1 line #7386: add example that shows that trailing path separators are stripped. ........ r83548 | georg.brandl | 2010-08-02 21:23:34 +0200 (Mo, 02 Aug 2010) | 1 line #8172: how does one use a property? ........ r83550 | georg.brandl | 2010-08-02 21:32:43 +0200 (Mo, 02 Aug 2010) | 1 line #9451: strengthen warning about __*__ special name usage. ........ r83551 | georg.brandl | 2010-08-02 21:35:06 +0200 (Mo, 02 Aug 2010) | 1 line Remove XXX comment that was displayed. ........ r83552 | georg.brandl | 2010-08-02 21:36:36 +0200 (Mo, 02 Aug 2010) | 1 line #9438: clarify that constant names also cannot be assigned as attributes. ........ r83553 | georg.brandl | 2010-08-02 21:39:17 +0200 (Mo, 02 Aug 2010) | 1 line Remove redundant information. ........ r83554 | georg.brandl | 2010-08-02 21:43:05 +0200 (Mo, 02 Aug 2010) | 1 line #7280: note about nasmw.exe. ........ r83555 | georg.brandl | 2010-08-02 21:44:48 +0200 (Mo, 02 Aug 2010) | 1 line #8861: remove unused variable. ........ r83558 | georg.brandl | 2010-08-02 22:05:19 +0200 (Mo, 02 Aug 2010) | 1 line #8648: document UTF-7 codec functions. ........ r83560 | georg.brandl | 2010-08-02 22:16:18 +0200 (Mo, 02 Aug 2010) | 1 line #9087: update json docstrings -- unicode and long do not exist anymore. ........
70 lines
2.6 KiB
ReStructuredText
70 lines
2.6 KiB
ReStructuredText
.. highlightlang:: c
|
|
|
|
.. _weakrefobjects:
|
|
|
|
Weak Reference Objects
|
|
----------------------
|
|
|
|
Python supports *weak references* as first-class objects. There are two
|
|
specific object types which directly implement weak references. The first is a
|
|
simple reference object, and the second acts as a proxy for the original object
|
|
as much as it can.
|
|
|
|
|
|
.. cfunction:: int PyWeakref_Check(ob)
|
|
|
|
Return true if *ob* is either a reference or proxy object.
|
|
|
|
|
|
.. cfunction:: int PyWeakref_CheckRef(ob)
|
|
|
|
Return true if *ob* is a reference object.
|
|
|
|
|
|
.. cfunction:: int PyWeakref_CheckProxy(ob)
|
|
|
|
Return true if *ob* is a proxy object.
|
|
|
|
|
|
.. cfunction:: PyObject* PyWeakref_NewRef(PyObject *ob, PyObject *callback)
|
|
|
|
Return a weak reference object for the object *ob*. This will always return
|
|
a new reference, but is not guaranteed to create a new object; an existing
|
|
reference object may be returned. The second parameter, *callback*, can be a
|
|
callable object that receives notification when *ob* is garbage collected; it
|
|
should accept a single parameter, which will be the weak reference object
|
|
itself. *callback* may also be ``None`` or *NULL*. If *ob* is not a
|
|
weakly-referencable object, or if *callback* is not callable, ``None``, or
|
|
*NULL*, this will return *NULL* and raise :exc:`TypeError`.
|
|
|
|
|
|
.. cfunction:: PyObject* PyWeakref_NewProxy(PyObject *ob, PyObject *callback)
|
|
|
|
Return a weak reference proxy object for the object *ob*. This will always
|
|
return a new reference, but is not guaranteed to create a new object; an
|
|
existing proxy object may be returned. The second parameter, *callback*, can
|
|
be a callable object that receives notification when *ob* is garbage
|
|
collected; it should accept a single parameter, which will be the weak
|
|
reference object itself. *callback* may also be ``None`` or *NULL*. If *ob*
|
|
is not a weakly-referencable object, or if *callback* is not callable,
|
|
``None``, or *NULL*, this will return *NULL* and raise :exc:`TypeError`.
|
|
|
|
|
|
.. cfunction:: PyObject* PyWeakref_GetObject(PyObject *ref)
|
|
|
|
Return the referenced object from a weak reference, *ref*. If the referent is
|
|
no longer live, returns :const:`Py_None`.
|
|
|
|
.. warning::
|
|
|
|
This function returns a **borrowed reference** to the referenced object.
|
|
This means that you should always call :cfunc:`Py_INCREF` on the object
|
|
except if you know that it cannot be destroyed while you are still
|
|
using it.
|
|
|
|
|
|
.. cfunction:: PyObject* PyWeakref_GET_OBJECT(PyObject *ref)
|
|
|
|
Similar to :cfunc:`PyWeakref_GetObject`, but implemented as a macro that does no
|
|
error checking.
|