mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
updated for version 7.3.1108
Problem: Error message for os.fchdir() (Charles Peacech) Solution: Clear the error. (ZyX)
This commit is contained in:
@@ -5413,6 +5413,8 @@ populate_module(PyObject *m, object_adder add_object, attr_getter get_attr)
|
|||||||
if (PyObject_SetAttrString(os, "fchdir", get_attr(m, "fchdir")))
|
if (PyObject_SetAttrString(os, "fchdir", get_attr(m, "fchdir")))
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
PyErr_Clear();
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@@ -728,6 +728,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1108,
|
||||||
/**/
|
/**/
|
||||||
1107,
|
1107,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user