summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-03-12 08:10:47 (GMT)
committerGitHub <noreply@github.com>2017-03-12 08:10:47 (GMT)
commit202fda55c2dffe27125703225e5af92254602dc6 (patch)
treeafc430d7fa6bdda7251bb60703ff192b9c8a37e1 /Misc
parent0767ad40bfe83525d2ba290cc6eb7c97ce01cdd6 (diff)
downloadcpython-202fda55c2dffe27125703225e5af92254602dc6.zip
cpython-202fda55c2dffe27125703225e5af92254602dc6.tar.gz
cpython-202fda55c2dffe27125703225e5af92254602dc6.tar.bz2
bpo-24037: Add Argument Clinic converter `bool(accept={int})`. (#485)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 59ec700..694bc34 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -910,6 +910,10 @@ Build
Tools/Demos
-----------
+- 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.
+
- Issue #29367: python-gdb.py now supports also ``method-wrapper``
(``wrapperobject``) objects.