summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSanyam Khurana <CuriousLearner@users.noreply.github.com>2017-06-20 13:31:32 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2017-06-20 13:31:32 (GMT)
commit3a7f03584ab75afbf5507970711c87042e423bb4 (patch)
treeab193606a8d7371fdf1650a7be10b541979b61a9 /Misc
parent90e01e50ef8a9e6c91f30d965563c378a4ad26de (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 47f3c37..6469986 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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'").