Compare commits

...

1 Commits

Author SHA1 Message Date
Pablo Galindo 69c37a6918
bpo-41625: Include 'socket.h' in aix 2020-12-02 03:31:13 +00:00
2 changed files with 4 additions and 4 deletions

View File

@ -5674,7 +5674,7 @@ exit:
#endif /* defined(HAVE_COPY_FILE_RANGE) */
#if defined(HAVE_SPLICE)
#if ((defined(HAVE_SPLICE) && !defined(_AIX)))
PyDoc_STRVAR(os_splice__doc__,
"splice($module, /, src, dst, count, offset_src=None, offset_dst=None,\n"
@ -5772,7 +5772,7 @@ exit:
return return_value;
}
#endif /* defined(HAVE_SPLICE) */
#endif /* ((defined(HAVE_SPLICE) && !defined(_AIX))) */
#if defined(HAVE_MKFIFO)
@ -9163,4 +9163,4 @@ exit:
#ifndef OS_WAITSTATUS_TO_EXITCODE_METHODDEF
#define OS_WAITSTATUS_TO_EXITCODE_METHODDEF
#endif /* !defined(OS_WAITSTATUS_TO_EXITCODE_METHODDEF) */
/*[clinic end generated code: output=8a59e91178897267 input=a9049054013a1b77]*/
/*[clinic end generated code: output=f3ec08afcd6cd8f8 input=a9049054013a1b77]*/

View File

@ -10370,7 +10370,7 @@ os_copy_file_range_impl(PyObject *module, int src, int dst, Py_ssize_t count,
}
#endif /* HAVE_COPY_FILE_RANGE*/
#ifdef HAVE_SPLICE
#if (defined(HAVE_SPLICE) && !defined(_AIX))
/*[clinic input]
os.splice