mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
bpo-46541: remove usage of _Py_IDENTIFIER from _ssl module (GH-31599)
This commit is contained in:
parent
9204bb72a2
commit
e91b0a7139
2 changed files with 37 additions and 10 deletions
|
@ -29,6 +29,11 @@ typedef struct {
|
|||
PyObject *lib_codes_to_names;
|
||||
/* socket type from module CAPI */
|
||||
PyTypeObject *Sock_Type;
|
||||
/* Interned strings */
|
||||
PyObject *str_library;
|
||||
PyObject *str_reason;
|
||||
PyObject *str_verify_code;
|
||||
PyObject *str_verify_message;
|
||||
} _sslmodulestate;
|
||||
|
||||
static struct PyModuleDef _sslmodule_def;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue