mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-25 14:45:12 +00:00
3406be6877
Use cases in the wild: * `test_readonly_char6_member()`:4410c44ae6/torch/csrc/cuda/Module.cpp (L961)
* `test_readonly_const_char_ptr_member()`:862a439a84/include/permonst.h (L43)
14 lines
337 B
Python
14 lines
337 B
Python
from __future__ import annotations
|
|
|
|
from pybind11_tests import class_sh_property_bakein as m
|
|
|
|
|
|
def test_readonly_char6_member():
|
|
obj = m.WithCharArrayMember()
|
|
assert obj.char6_member == "Char6"
|
|
|
|
|
|
def test_readonly_const_char_ptr_member():
|
|
obj = m.WithConstCharPtrMember()
|
|
assert obj.const_char_ptr_member == "ConstChar*"
|