Home
last modified time | relevance | path

Searched refs:msg_obj (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython3/Lib/test/test_email/
Dtest_contentmanager.py84 msg_obj = self.Thing()
85 cm.set_content(m, msg_obj, foo='bar')
87 self.assertEqual(m.get_payload(), msg_obj)
101 msg_obj = self.Thing()
102 cm.set_content(m, msg_obj)
104 self.assertEqual(m.get_payload(), msg_obj)
109 msg_obj = self.Thing()
111 cm.set_content(m, msg_obj)
/external/python/cpython3/Modules/clinic/
D_hashopenssl.c.h1178 _hashlib_hmac_new_impl(PyObject *module, Py_buffer *key, PyObject *msg_obj,
1190 PyObject *msg_obj = NULL; in _hashlib_hmac_new() local
1208 msg_obj = args[1]; in _hashlib_hmac_new()
1227 return_value = _hashlib_hmac_new_impl(module, &key, msg_obj, digestmod); in _hashlib_hmac_new()
/external/python/cpython3/Python/
Dpythonrun.c1560 PyObject *msg_obj = NULL; in err_input() local
1624 msg_obj = PyObject_Str(value); in err_input()
1663 if (msg_obj) in err_input()
1664 w = Py_BuildValue("(OO)", msg_obj, v); in err_input()
1673 Py_XDECREF(msg_obj); in err_input()
/external/python/cpython3/Modules/
D_hashopenssl.c1394 _hashlib_hmac_new_impl(PyObject *module, Py_buffer *key, PyObject *msg_obj, in _hashlib_hmac_new_impl() argument
1447 if ((msg_obj != NULL) && (msg_obj != Py_None)) { in _hashlib_hmac_new_impl()
1448 if (!_hmac_update(self, msg_obj)) in _hashlib_hmac_new_impl()