diff options
author | Sanyam Khurana <CuriousLearner@users.noreply.github.com> | 2017-06-20 13:31:32 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-06-20 13:31:32 (GMT) |
commit | 3a7f03584ab75afbf5507970711c87042e423bb4 (patch) | |
tree | ab193606a8d7371fdf1650a7be10b541979b61a9 /Misc | |
parent | 90e01e50ef8a9e6c91f30d965563c378a4ad26de (diff) | |
download | cpython-3a7f03584ab75afbf5507970711c87042e423bb4.zip cpython-3a7f03584ab75afbf5507970711c87042e423bb4.tar.gz cpython-3a7f03584ab75afbf5507970711c87042e423bb4.tar.bz2 |
bpo-30597: Show expected input in custom 'print' error message. (#2009)
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-30597: ``print`` now shows expected input in custom error message when + used as a Python 2 statement. Patch by Sanyam Khurana. + - bpo-30682: Removed a too-strict assertion that failed for certain f-strings, such as eval("f'\\\n'") and eval("f'\\\r'"). |