Lines Matching defs:data
375 PyErr_SetString(MSIError, "invalid data");
745 value as data: object
754 PyObject *data)
759 if (PyUnicode_Check(data)) {
761 const WCHAR *value = _PyUnicode_AsUnicode(data);
763 WCHAR *value = PyUnicode_AsWideCharString(data, NULL);
773 } else if (PyLong_CheckExact(data)) {
774 long value = PyLong_AsLong(data);
945 data: object
946 a record describing the new data
953 _msi_View_Modify_impl(msiobj *self, int kind, PyObject *data)
958 if (!Py_IS_TYPE(data, &record_Type)) {
963 if ((status = MsiViewModify(self->h, kind, ((msiobj*)data)->h)) != ERROR_SUCCESS)