Skip to content

Commit

Permalink
bpo-41625: Do not add os.splice on AIX due to compatibility issues (p…
Browse files Browse the repository at this point in the history
  • Loading branch information
pablogsal authored Dec 2, 2020
1 parent 99b5944 commit dedc2cd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Modules/clinic/posixmodule.c.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Modules/posixmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit dedc2cd

Please sign in to comment.