mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-11 08:03:55 +00:00
1d1f81b278
This commit includes modifications that are needed to get pybind11 to work with PyPy. The full test suite compiles and runs except for a last few functions that are commented out (due to problems in PyPy that were reported on the PyPy bugtracker). Two somewhat intrusive changes were needed to make it possible: two new tags ``py::buffer_protocol()`` and ``py::metaclass()`` must now be specified to the ``class_`` constructor if the class uses the buffer protocol and/or requires a metaclass (e.g. for static properties). Note that this is only for the PyPy version based on Python 2.7 for now. When the PyPy 3.x has caught up in terms of cpyext compliance, a PyPy 3.x patch will follow.
98 lines
2.2 KiB
Python
98 lines
2.2 KiB
Python
import pytest
|
|
|
|
|
|
def test_keep_alive_argument(capture):
|
|
from pybind11_tests import Parent, Child
|
|
|
|
with capture:
|
|
p = Parent()
|
|
assert capture == "Allocating parent."
|
|
with capture:
|
|
p.addChild(Child())
|
|
pytest.gc_collect()
|
|
assert capture == """
|
|
Allocating child.
|
|
Releasing child.
|
|
"""
|
|
with capture:
|
|
del p
|
|
pytest.gc_collect()
|
|
assert capture == "Releasing parent."
|
|
|
|
with capture:
|
|
p = Parent()
|
|
assert capture == "Allocating parent."
|
|
with capture:
|
|
p.addChildKeepAlive(Child())
|
|
pytest.gc_collect()
|
|
assert capture == "Allocating child."
|
|
with capture:
|
|
del p
|
|
pytest.gc_collect()
|
|
assert capture == """
|
|
Releasing parent.
|
|
Releasing child.
|
|
"""
|
|
|
|
|
|
def test_keep_alive_return_value(capture):
|
|
from pybind11_tests import Parent
|
|
|
|
with capture:
|
|
p = Parent()
|
|
assert capture == "Allocating parent."
|
|
with capture:
|
|
p.returnChild()
|
|
pytest.gc_collect()
|
|
assert capture == """
|
|
Allocating child.
|
|
Releasing child.
|
|
"""
|
|
with capture:
|
|
del p
|
|
pytest.gc_collect()
|
|
assert capture == "Releasing parent."
|
|
|
|
with capture:
|
|
p = Parent()
|
|
assert capture == "Allocating parent."
|
|
with capture:
|
|
p.returnChildKeepAlive()
|
|
pytest.gc_collect()
|
|
assert capture == "Allocating child."
|
|
with capture:
|
|
del p
|
|
pytest.gc_collect()
|
|
assert capture == """
|
|
Releasing parent.
|
|
Releasing child.
|
|
"""
|
|
|
|
|
|
def test_return_none(capture):
|
|
from pybind11_tests import Parent
|
|
|
|
with capture:
|
|
p = Parent()
|
|
assert capture == "Allocating parent."
|
|
with capture:
|
|
p.returnNullChildKeepAliveChild()
|
|
pytest.gc_collect()
|
|
assert capture == ""
|
|
with capture:
|
|
del p
|
|
pytest.gc_collect()
|
|
assert capture == "Releasing parent."
|
|
|
|
with capture:
|
|
p = Parent()
|
|
assert capture == "Allocating parent."
|
|
with capture:
|
|
p.returnNullChildKeepAliveParent()
|
|
pytest.gc_collect()
|
|
assert capture == ""
|
|
with capture:
|
|
del p
|
|
pytest.gc_collect()
|
|
assert capture == "Releasing parent."
|