mirror of
https://github.com/python/cpython.git
synced 2025-11-02 19:12:55 +00:00
Added missing semicolon.
This commit is contained in:
parent
705d9d5c41
commit
86a05ecdb5
1 changed files with 1 additions and 1 deletions
|
|
@ -1928,7 +1928,7 @@ posix_lchmod(PyObject *self, PyObject *args)
|
||||||
if (!PyArg_ParseTuple(args, "O&i:lchmod", PyUnicode_FSConverter,
|
if (!PyArg_ParseTuple(args, "O&i:lchmod", PyUnicode_FSConverter,
|
||||||
&opath, &i))
|
&opath, &i))
|
||||||
return NULL;
|
return NULL;
|
||||||
path = bytes2str(opath, 1)
|
path = bytes2str(opath, 1);
|
||||||
Py_BEGIN_ALLOW_THREADS
|
Py_BEGIN_ALLOW_THREADS
|
||||||
res = lchmod(path, i);
|
res = lchmod(path, i);
|
||||||
Py_END_ALLOW_THREADS
|
Py_END_ALLOW_THREADS
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue