mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
Remove unnecessary/extra parens when returning a value.
This commit is contained in:
parent
24b3c22985
commit
3efd0a1e86
1 changed files with 6 additions and 6 deletions
|
|
@ -1166,7 +1166,7 @@ posix_access(PyObject *self, PyObject *args)
|
|||
it is a simple dereference. */
|
||||
res = _waccess(PyUnicode_AS_UNICODE(po), mode);
|
||||
Py_END_ALLOW_THREADS
|
||||
return(PyBool_FromLong(res == 0));
|
||||
return PyBool_FromLong(res == 0);
|
||||
}
|
||||
/* Drop the argument parsing error as narrow strings
|
||||
are also valid. */
|
||||
|
|
@ -1180,7 +1180,7 @@ posix_access(PyObject *self, PyObject *args)
|
|||
res = access(path, mode);
|
||||
Py_END_ALLOW_THREADS
|
||||
PyMem_Free(path);
|
||||
return(PyBool_FromLong(res == 0));
|
||||
return PyBool_FromLong(res == 0);
|
||||
}
|
||||
|
||||
#ifndef F_OK
|
||||
|
|
@ -1222,8 +1222,8 @@ posix_ttyname(PyObject *self, PyObject *args)
|
|||
ret = ttyname(id);
|
||||
#endif
|
||||
if (ret == NULL)
|
||||
return(posix_error());
|
||||
return(PyString_FromString(ret));
|
||||
return posix_error();
|
||||
return PyString_FromString(ret);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
@ -1244,8 +1244,8 @@ posix_ctermid(PyObject *self, PyObject *noargs)
|
|||
ret = ctermid(buffer);
|
||||
#endif
|
||||
if (ret == NULL)
|
||||
return(posix_error());
|
||||
return(PyString_FromString(buffer));
|
||||
return posix_error();
|
||||
return PyString_FromString(buffer);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue