MCPcopy Index your code
hub / github.com/python/cpython / _post_install_3xx

Method _post_install_3xx

Tools/ssl/multissltests.py:440–450  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

438 super()._build_src(config_args)
439
440 def _post_install_3xx(self):
441 # create ssl/ subdir with example configs
442 # Install FIPS module
443 self._subprocess_call(
444 ["make", "-j1", "install_ssldirs", "install_fips"],
445 cwd=self.build_dir
446 )
447 if not os.path.isdir(self.lib_dir):
448 # 3.0.0-beta2 uses lib64 on 64 bit platforms
449 lib64 = self.lib_dir + "64"
450 os.symlink(lib64, self.lib_dir)
451
452 def _post_install_4xx(self):
453 self._post_install_3xx()

Callers 2

_post_installMethod · 0.95
_post_install_4xxMethod · 0.95

Calls 2

_subprocess_callMethod · 0.80
isdirMethod · 0.45

Tested by

no test coverage detected