mirror of https://github.com/python/cpython
gh-126455: Disallow _ssl.SSLSocket instantiation (#126481)
Prevent creation of incomplete/invalid _ssl.SSLSocket objects when created directly.
This commit is contained in:
parent
09d7083962
commit
b1c4ffc205
|
@ -2979,7 +2979,7 @@ static PyType_Spec PySSLSocket_spec = {
|
||||||
.name = "_ssl._SSLSocket",
|
.name = "_ssl._SSLSocket",
|
||||||
.basicsize = sizeof(PySSLSocket),
|
.basicsize = sizeof(PySSLSocket),
|
||||||
.flags = (Py_TPFLAGS_DEFAULT | Py_TPFLAGS_IMMUTABLETYPE |
|
.flags = (Py_TPFLAGS_DEFAULT | Py_TPFLAGS_IMMUTABLETYPE |
|
||||||
Py_TPFLAGS_HAVE_GC),
|
Py_TPFLAGS_HAVE_GC | Py_TPFLAGS_DISALLOW_INSTANTIATION),
|
||||||
.slots = PySSLSocket_slots,
|
.slots = PySSLSocket_slots,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue