Home | History | Annotate | Download | only in Modules

Lines Matching full:fullpath

294     PyObject *path, *fullpath, *item;
307 fullpath = PyUnicode_FromFormat("%U%s", path, zso->suffix);
308 if (fullpath == NULL) {
312 item = PyDict_GetItem(self->files, fullpath);
313 Py_DECREF(fullpath);
488 PyObject *pkgpath, *fullpath, *subname;
495 fullpath = PyUnicode_FromFormat("%U%c%U%U",
499 if (fullpath == NULL)
502 pkgpath = Py_BuildValue("[N]", fullpath);
635 PyObject *fullname, *subname, *path, *fullpath;
659 fullpath = PyUnicode_FromFormat("%U%c__init__.py", path, SEP);
661 fullpath = PyUnicode_FromFormat("%U.py", path);
663 if (fullpath == NULL)
666 toc_entry = PyDict_GetItem(self->files, fullpath);
667 Py_DECREF(fullpath);
1458 PyObject *path, *fullpath = NULL;
1473 fullpath = PyUnicode_FromFormat("%U%s", path, zso->suffix);
1474 if (fullpath == NULL)
1479 self->archive, (int)SEP, fullpath);
1480 toc_entry = PyDict_GetItem(self->files, fullpath);
1487 mtime = get_mtime_of_source(self, fullpath);
1492 Py_CLEAR(fullpath);
1511 Py_CLEAR(fullpath);
1516 Py_XDECREF(fullpath);