summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorLarry Hastings <larry@hastings.org>2014-08-05 09:55:21 (GMT)
committerLarry Hastings <larry@hastings.org>2014-08-05 09:55:21 (GMT)
commita73cb8a6b82b4dbf0aa9684d4356f0b6e689360a (patch)
treec547420011185cf5c0704cc4fb8e0a8de4eaba47 /Misc
parent57acacdfcf6cf61ef22c92e4848e01fd2aef9911 (diff)
downloadcpython-a73cb8a6b82b4dbf0aa9684d4356f0b6e689360a.zip
cpython-a73cb8a6b82b4dbf0aa9684d4356f0b6e689360a.tar.gz
cpython-a73cb8a6b82b4dbf0aa9684d4356f0b6e689360a.tar.bz2
Issue #22120: For functions using an unsigned integer return converter,
Argument Clinic now generates a cast to that type for the comparison to -1 in the generated code. (This supresses a compilation warning.)
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 dea39bf..43b458b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -882,6 +882,10 @@ Tests
Tools/Demos
-----------
+- Issue #22120: For functions using an unsigned integer return converter,
+ Argument Clinic now generates a cast to that type for the comparison
+ to -1 in the generated code. (This supresses a compilation warning.)
+
- Issue #18974: Tools/scripts/diff.py now uses argparse instead of optparse.
- Issue #21906: Make Tools/scripts/md5sum.py work in Python 3.