Home
last modified time | relevance | path

Searched refs:mydict (Results 1 – 5 of 5) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Derrors.c563 PyObject *mydict = NULL; in PyErr_NewException() local
575 dict = mydict = PyDict_New(); in PyErr_NewException()
601 Py_XDECREF(mydict); in PyErr_NewException()
614 PyObject *mydict = NULL; /* points to the dict only if we create it */ in PyErr_NewExceptionWithDoc() local
618 dict = mydict = PyDict_New(); in PyErr_NewExceptionWithDoc()
636 Py_XDECREF(mydict); in PyErr_NewExceptionWithDoc()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Derrors.c585 PyObject *mydict = NULL; in PyErr_NewException() local
597 dict = mydict = PyDict_New(); in PyErr_NewException()
623 Py_XDECREF(mydict); in PyErr_NewException()
636 PyObject *mydict = NULL; /* points to the dict only if we create it */ in PyErr_NewExceptionWithDoc() local
640 dict = mydict = PyDict_New(); in PyErr_NewExceptionWithDoc()
658 Py_XDECREF(mydict); in PyErr_NewExceptionWithDoc()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dmapping_tests.py453 class mydict(self.type2test): class
456 ud = mydict.fromkeys('ab')
589 class mydict(self.type2test): class
592 ud = mydict.fromkeys('ab')
Dtest_dict.py223 class mydict(dict): class
226 ud = mydict.fromkeys('ab')
Dtest_descr.py3611 class mydict(dict): class
3613 d = mydict()