bpo-41625: Do not add os.splice on AIX due to compatibility issues (GH-23608)

This commit is contained in:
Pablo Galindo 2020-12-02 17:57:18 +00:00 committed by GitHub
parent 99b594404d
commit dedc2cd5f0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

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