diff options
author | Larry Hastings <larry@hastings.org> | 2014-08-05 09:55:21 (GMT) |
---|---|---|
committer | Larry Hastings <larry@hastings.org> | 2014-08-05 09:55:21 (GMT) |
commit | a73cb8a6b82b4dbf0aa9684d4356f0b6e689360a (patch) | |
tree | c547420011185cf5c0704cc4fb8e0a8de4eaba47 /Misc | |
parent | 57acacdfcf6cf61ef22c92e4848e01fd2aef9911 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |