Home
last modified time | relevance | path

Searched refs:mnemo (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Tools/ssl/
Dmake_ssl_data.py71 for mnemo, (libcode, _, _) in sorted(error_libraries.items()):
72 w(' {"%s", %s},' % (mnemo, libcode))
/external/python/cpython2/Modules/
D_ssl.c4335 PyObject *mnemo, *key; in init_ssl() local
4336 mnemo = PyUnicode_FromString(errcode->mnemonic); in init_ssl()
4338 if (mnemo == NULL || key == NULL) in init_ssl()
4340 if (PyDict_SetItem(err_codes_to_names, key, mnemo)) in init_ssl()
4342 if (PyDict_SetItem(err_names_to_codes, mnemo, key)) in init_ssl()
4345 Py_DECREF(mnemo); in init_ssl()
4358 PyObject *mnemo, *key; in init_ssl() local
4360 mnemo = PyUnicode_FromString(libcode->library); in init_ssl()
4361 if (key == NULL || mnemo == NULL) in init_ssl()
4363 if (PyDict_SetItem(lib_codes_to_names, key, mnemo)) in init_ssl()
[all …]