Home
last modified time | relevance | path

Searched refs:pyname (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Python/
Dcontext.c165 PyObject *pyname = PyUnicode_FromString(name); in PyContextVar_New() local
166 if (pyname == NULL) { in PyContextVar_New()
169 PyContextVar *var = contextvar_new(pyname, def); in PyContextVar_New()
170 Py_DECREF(pyname); in PyContextVar_New()
/external/python/cpython3/Lib/test/test_import/
D__init__.py1201 pyname = script_helper.make_script('', TESTFN_UNENCODABLE, 'pass')
1202 self.addCleanup(unlink, pyname)
1203 name = pyname[:-3]
/external/python/cpython2/Modules/
D_ssl.c3700 PyObject *pyname = Py_None; in PySSL_txt2obj() local
3705 kwlist, &txt, &pyname)) { in PySSL_txt2obj()
3708 name = PyObject_IsTrue(pyname); in PySSL_txt2obj()