mirror of https://github.com/python/cpython
Docs: fix typo in os.pwrite docstring (#107087)
This commit is contained in:
parent
7ca2d8e053
commit
8de8a817ee
|
@ -7366,7 +7366,7 @@ PyDoc_STRVAR(os_pwrite__doc__,
|
||||||
"Write bytes to a file descriptor starting at a particular offset.\n"
|
"Write bytes to a file descriptor starting at a particular offset.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Write buffer to fd, starting at offset bytes from the beginning of\n"
|
"Write buffer to fd, starting at offset bytes from the beginning of\n"
|
||||||
"the file. Returns the number of bytes writte. Does not change the\n"
|
"the file. Returns the number of bytes written. Does not change the\n"
|
||||||
"current file offset.");
|
"current file offset.");
|
||||||
|
|
||||||
#define OS_PWRITE_METHODDEF \
|
#define OS_PWRITE_METHODDEF \
|
||||||
|
@ -11981,4 +11981,4 @@ exit:
|
||||||
#ifndef OS_WAITSTATUS_TO_EXITCODE_METHODDEF
|
#ifndef OS_WAITSTATUS_TO_EXITCODE_METHODDEF
|
||||||
#define OS_WAITSTATUS_TO_EXITCODE_METHODDEF
|
#define OS_WAITSTATUS_TO_EXITCODE_METHODDEF
|
||||||
#endif /* !defined(OS_WAITSTATUS_TO_EXITCODE_METHODDEF) */
|
#endif /* !defined(OS_WAITSTATUS_TO_EXITCODE_METHODDEF) */
|
||||||
/*[clinic end generated code: output=a7e8c3df2db09717 input=a9049054013a1b77]*/
|
/*[clinic end generated code: output=a85a386b212b0631 input=a9049054013a1b77]*/
|
||||||
|
|
|
@ -11283,13 +11283,13 @@ os.pwrite -> Py_ssize_t
|
||||||
Write bytes to a file descriptor starting at a particular offset.
|
Write bytes to a file descriptor starting at a particular offset.
|
||||||
|
|
||||||
Write buffer to fd, starting at offset bytes from the beginning of
|
Write buffer to fd, starting at offset bytes from the beginning of
|
||||||
the file. Returns the number of bytes writte. Does not change the
|
the file. Returns the number of bytes written. Does not change the
|
||||||
current file offset.
|
current file offset.
|
||||||
[clinic start generated code]*/
|
[clinic start generated code]*/
|
||||||
|
|
||||||
static Py_ssize_t
|
static Py_ssize_t
|
||||||
os_pwrite_impl(PyObject *module, int fd, Py_buffer *buffer, Py_off_t offset)
|
os_pwrite_impl(PyObject *module, int fd, Py_buffer *buffer, Py_off_t offset)
|
||||||
/*[clinic end generated code: output=c74da630758ee925 input=19903f1b3dd26377]*/
|
/*[clinic end generated code: output=c74da630758ee925 input=614acbc7e5a0339a]*/
|
||||||
{
|
{
|
||||||
Py_ssize_t size;
|
Py_ssize_t size;
|
||||||
int async_err = 0;
|
int async_err = 0;
|
||||||
|
|
Loading…
Reference in New Issue