diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-10-03 11:13:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-03 11:13:44 (GMT) |
commit | 85c0b8941f0c8ef3ed787c9d504712c6ad3eb5d3 (patch) | |
tree | 0b5ed0847156a9397d7b8bbee4ed6349a689172c /Misc | |
parent | 1a87de7fcfa3c19f08e29047337c350b4a32b259 (diff) | |
download | cpython-85c0b8941f0c8ef3ed787c9d504712c6ad3eb5d3.zip cpython-85c0b8941f0c8ef3ed787c9d504712c6ad3eb5d3.tar.gz cpython-85c0b8941f0c8ef3ed787c9d504712c6ad3eb5d3.tar.bz2 |
bpo-31619: Fixed a ValueError when convert a string with large number of underscores (#3827)
to integer with binary base.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2017-09-29-20-32-24.bpo-31619.6gQ1kv.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2017-09-29-20-32-24.bpo-31619.6gQ1kv.rst b/Misc/NEWS.d/next/Core and Builtins/2017-09-29-20-32-24.bpo-31619.6gQ1kv.rst new file mode 100644 index 0000000..3efcc9d --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2017-09-29-20-32-24.bpo-31619.6gQ1kv.rst @@ -0,0 +1,2 @@ +Fixed a ValueError when convert a string with large number of underscores +to integer with binary base. |