diff options
author | Xiang Zhang <angwerzx@126.com> | 2017-03-06 09:17:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-06 09:17:05 (GMT) |
commit | b76ad5121e2cfa89d6476d700cbcb65b7ffc39ac (patch) | |
tree | fd9ddcebff7e19fd07c62675dbdd5cceccd7963f /Misc | |
parent | 86aa269646fa73bbcbc26f45ed854359d04c1fde (diff) | |
download | cpython-b76ad5121e2cfa89d6476d700cbcb65b7ffc39ac.zip cpython-b76ad5121e2cfa89d6476d700cbcb65b7ffc39ac.tar.gz cpython-b76ad5121e2cfa89d6476d700cbcb65b7ffc39ac.tar.bz2 |
bpo-29714: Fix a regression that bytes format may fail when containing zero bytes inside. (GH-499)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ What's New in Python 3.7.0 alpha 1? Core and Builtins ----------------- +- bpo-29714: Fix a regression that bytes format may fail when containing zero + bytes inside. + - bpo-29695: Using "x" as a keyword argument in int(), bool() and float() and using "sequence" as a keyword argument in list() and tuple() are deprecated. Specify the value as a positional argument instead. |