Home | History | Annotate | Download | only in Objects

Lines Matching refs:winerror

838     Py_CLEAR(self->winerror);

856 Py_VISIT(self->winerror);
874 /* Set errno to the POSIX errno, and winerror to the Win32
881 Py_CLEAR(self->winerror);
882 self->winerror = self->myerrno;
920 if (self->winerror) {
921 Py_INCREF(self->winerror);
922 PyTuple_SET_ITEM(tuple, 0, self->winerror);
944 else if (self->winerror && self->strerror) {
958 if (self->winerror) {
959 Py_INCREF(self->winerror);
960 PyTuple_SET_ITEM(tuple, 0, self->winerror);
993 {"winerror", T_OBJECT, offsetof(PyWindowsErrorObject, winerror), 0,