2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-20 16:52:15 +00:00
[SVN r17627]
This commit is contained in:
Dave Abrahams
2003-02-25 03:54:38 +00:00
parent 6d7d2ea5fe
commit 923feda9f7

View File

@@ -29,6 +29,18 @@
<hr>
<dl class="page-index">
<dt>24 February 2003</dt>
<dd>Finished improved support
for <code>boost::shared_ptr</code>. Now any wrapped object of
C++ class <code>X</code> can be converted automatically
to <code>shared_ptr&lt;X&gt;</code>, regardless of how it was
wrapped. The <code>shared_ptr</code> will manage the lifetime
of the Python object which supplied the <code>X</code>, rather
than just the <code>X</code> object itself, and when such
a <code>shared_ptr</code> is converted back to Python, the
original Python object will be returned.</dd>
<dt>19 January 2003</dt>
<dd>Integrated <code>staticmethod</code> support from <a href=