mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-29 08:32:02 +00:00
14 lines
219 B
Python
14 lines
219 B
Python
|
from __future__ import annotations
|
||
|
|
||
|
import env # noqa: F401
|
||
|
from pybind11_tests import ccccccccccccccccccccc as m
|
||
|
|
||
|
|
||
|
def test_disown_d():
|
||
|
d = m.D()
|
||
|
m.disown_b(d)
|
||
|
|
||
|
|
||
|
def test_shptr_copy():
|
||
|
m.test_ShPtr_copy()
|