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. */
res = access(path, mode);
Py_END_ALLOW_THREADS
PyMem_Free(path);
- return(PyBool_FromLong(res == 0));
+ return PyBool_FromLong(res == 0);
}
#ifndef F_OK
ret = ttyname(id);
#endif
if (ret == NULL)
- return(posix_error());
- return(PyString_FromString(ret));
+ return posix_error();
+ return PyString_FromString(ret);
}
#endif
ret = ctermid(buffer);
#endif
if (ret == NULL)
- return(posix_error());
- return(PyString_FromString(buffer));
+ return posix_error();
+ return PyString_FromString(buffer);
}
#endif