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

Method verify_mode

Lib/ssl.py:670–675  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

668
669 @property
670 def verify_mode(self):
671 value = super().verify_mode
672 try:
673 return VerifyMode(value)
674 except ValueError:
675 return value
676
677 @verify_mode.setter
678 def verify_mode(self, value):

Callers

nothing calls this directly

Calls 2

superClass · 0.85
__set__Method · 0.45

Tested by

no test coverage detected