summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2019-08-26 06:27:56 (GMT)
committerGitHub <noreply@github.com>2019-08-26 06:27:56 (GMT)
commit1039f39c9c6edb4c185856c19316d3a4eb561c38 (patch)
treedc336bbb7373edb44c8cab0358a0ea3c1839f6bd /Misc
parent73e054970193fc421c533564a4189be522f9c331 (diff)
downloadcpython-1039f39c9c6edb4c185856c19316d3a4eb561c38.zip
cpython-1039f39c9c6edb4c185856c19316d3a4eb561c38.tar.gz
cpython-1039f39c9c6edb4c185856c19316d3a4eb561c38.tar.bz2
bpo-37824: Properly handle user input warnings in IDLE shell. (GH-15500)
Cease turning SyntaxWarnings into SyntaxErrors.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/IDLE/2019-08-26-00-41-53.bpo-37824.YY5jAI.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/IDLE/2019-08-26-00-41-53.bpo-37824.YY5jAI.rst b/Misc/NEWS.d/next/IDLE/2019-08-26-00-41-53.bpo-37824.YY5jAI.rst
new file mode 100644
index 0000000..1a1e8a5
--- /dev/null
+++ b/Misc/NEWS.d/next/IDLE/2019-08-26-00-41-53.bpo-37824.YY5jAI.rst
@@ -0,0 +1,2 @@
+Properly handle user input warnings in IDLE shell. Cease turning
+SyntaxWarnings into SyntaxErrors.