Lines Matching refs:super
462 return super().__new__(cls, *_txt2obj(oid, name=False))
468 return super().__new__(cls, *_nid2obj(nid))
474 return super().__new__(cls, *_txt2obj(name, name=True))
602 return TLSVersion(super().minimum_version)
608 super(SSLContext, SSLContext).minimum_version.__set__(self, value)
612 return TLSVersion(super().maximum_version)
616 super(SSLContext, SSLContext).maximum_version.__set__(self, value)
620 return Options(super().options)
624 super(SSLContext, SSLContext).options.__set__(self, value)
676 inner = super()._msg_callback
685 super(SSLContext, SSLContext)._msg_callback.__set__(self, None)
718 super(SSLContext, SSLContext)._msg_callback.__set__(self, inner)
722 return _SSLMethod(super().protocol)
726 return VerifyFlags(super().verify_flags)
730 super(SSLContext, SSLContext).verify_flags.__set__(self, value)
734 value = super().verify_mode
742 super(SSLContext, SSLContext).verify_mode.__set__(self, value)
1039 super(SSLSocket, self).__init__(**kwargs)
1241 return super().send(data, flags)
1249 return super().sendto(data, flags_or_addr)
1251 return super().sendto(data, flags_or_addr, addr)
1273 return super().sendall(data, flags)
1283 return super().sendfile(file, offset, count)
1294 return super().recv(buflen, flags)
1309 return super().recv_into(buffer, nbytes, flags)
1317 return super().recvfrom(buflen, flags)
1325 return super().recvfrom_into(buffer, nbytes, flags)
1346 super().shutdown(how)
1366 super()._real_close()
1392 rc = super().connect_ex(addr)
1395 super().connect(addr)
1420 newsock, addr = super().accept()