The CXX standard level. If set, will add the required flags. If left at 0, it will trigger an automatic search when pybind11's build_ext is used. If None, will have no effect. Besides just the flags, this may add a macos-min 10.9 or 10.14 flag if MACOSX_DEPLOYMENT_T
(self)
| 159 | |
| 160 | @property |
| 161 | def cxx_std(self) -> int: |
| 162 | """ |
| 163 | The CXX standard level. If set, will add the required flags. If left at |
| 164 | 0, it will trigger an automatic search when pybind11's build_ext is |
| 165 | used. If None, will have no effect. Besides just the flags, this may |
| 166 | add a macos-min 10.9 or 10.14 flag if MACOSX_DEPLOYMENT_TARGET is |
| 167 | unset. |
| 168 | """ |
| 169 | return self._cxx_level |
| 170 | |
| 171 | @cxx_std.setter |
| 172 | def cxx_std(self, level: int) -> None: |
nothing calls this directly
no test coverage detected