-
Notifications
You must be signed in to change notification settings - Fork 25
Closed
Description
Related to this older Issue, we started to encounter this problem through our robocorp libraries (where injection gets done -- so at CLI level, not library) and now I observe it even in our CI during the test runs. (while I couldn't reproduce locally on the same system and Python version)
- Question is, did something change in the ssl.py so that this started to appear with the later Py3.10.x versions?
- And why is the super class invoked like this:
_original_super_SSLContext = super(_original_SSLContext, _original_SSLContext)? Even in the standardsslmodule I see the same pattern when calling theverify_modemethod. By looking at the docs we have the following:super(type, type2) -> bound super object; requires issubclass(type2, type)
L.E.: That's all good, as expected. (as we get the super class of the first argument while passing the second for change)@verify_mode.setter def verify_mode(self, value): super(SSLContext, SSLContext).verify_mode.__set__(self, value)
- Don't we have a bug here with this code (_api.py)?
as clearly we don't have
@verify_flags.setter def verify_flags(self, value: ssl.VerifyFlags) -> None: _original_super_SSLContext.verify_flags.__set__( # type: ignore[attr-defined] self._ctx, value )
.verify_flagsavailable with PyPI.
JonasR
Metadata
Metadata
Assignees
Labels
No labels