Value of ssl.OPENSSL_VERSION
(self)
| 230 | |
| 231 | @property |
| 232 | def pyssl_version(self): |
| 233 | """Value of ssl.OPENSSL_VERSION""" |
| 234 | cmd = [ |
| 235 | sys.executable, |
| 236 | '-c', 'import ssl; print(ssl.OPENSSL_VERSION)' |
| 237 | ] |
| 238 | return self._subprocess_output(cmd) |
| 239 | |
| 240 | @property |
| 241 | def include_dir(self): |
nothing calls this directly
no test coverage detected