summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-03-19 17:37:40 (GMT)
committerGitHub <noreply@github.com>2017-03-19 17:37:40 (GMT)
commit80ec8364f15857c405ef0ecb1e758c8fc6b332f7 (patch)
treebf8bfdbf42d3c2aeca0f085777979f873427c642 /Misc
parenta5af6e1af77ee0f9294c5776478a9c24d9fbab94 (diff)
downloadcpython-80ec8364f15857c405ef0ecb1e758c8fc6b332f7.zip
cpython-80ec8364f15857c405ef0ecb1e758c8fc6b332f7.tar.gz
cpython-80ec8364f15857c405ef0ecb1e758c8fc6b332f7.tar.bz2
bpo-29748: Added the slice index converter in Argument Clinic. (#549)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f317527..8509f52 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -937,6 +937,8 @@ Build
Tools/Demos
-----------
+- bpo-29748: Added the slice index converter in Argument Clinic.
+
- bpo-24037: Argument Clinic now uses the converter `bool(accept={int})` rather
than `int` for semantical booleans. This avoids repeating the default
value for Python and C and will help in converting to `bool` in future.