diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2019-10-13 08:59:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-13 08:59:31 (GMT) |
commit | 140a7d1f3579e778656a6b6bfad72489e9870a4d (patch) | |
tree | e9f37d4c49944e9c00e83baaaff6dd785356b29e /Misc/NEWS.d | |
parent | 46113e0cf32748f66cf64cd633984d143b433cd1 (diff) | |
download | cpython-140a7d1f3579e778656a6b6bfad72489e9870a4d.zip cpython-140a7d1f3579e778656a6b6bfad72489e9870a4d.tar.gz cpython-140a7d1f3579e778656a6b6bfad72489e9870a4d.tar.bz2 |
bpo-38378: Rename parameters "out" and "in" of os.sendfile(). (GH-16742)
They conflicted with keyword "in".
Also rename positional-only parameters of private os._fcopyfile()
for consistency.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-10-13-11-00-03.bpo-38378.yYNpSm.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-10-13-11-00-03.bpo-38378.yYNpSm.rst b/Misc/NEWS.d/next/Library/2019-10-13-11-00-03.bpo-38378.yYNpSm.rst new file mode 100644 index 0000000..1bc5282 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-10-13-11-00-03.bpo-38378.yYNpSm.rst @@ -0,0 +1,2 @@ +Parameters *out* and *in* of :func:`os.sendfile` was renamed to *out_fd* and +*in_fd*. |