summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2020-06-05 23:52:27 (GMT)
committerGitHub <noreply@github.com>2020-06-05 23:52:27 (GMT)
commit2e6593db0086004a1ca7f7049218ff9573d473c2 (patch)
tree5db8bc441331b63718905d8174612bee3640c69a /Misc
parenta54096e30523534e8eebb8dc1011b4536ed237a8 (diff)
downloadcpython-2e6593db0086004a1ca7f7049218ff9573d473c2.zip
cpython-2e6593db0086004a1ca7f7049218ff9573d473c2.tar.gz
cpython-2e6593db0086004a1ca7f7049218ff9573d473c2.tar.bz2
bpo-40880: Fix invalid read in newline_in_string in pegen.c (#20666)
* bpo-40880: Fix invalid read in newline_in_string in pegen.c * Update Parser/pegen/pegen.c Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com> * Add NEWS entry Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2020-06-06-00-23-19.bpo-40880.fjdzSh.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-06-06-00-23-19.bpo-40880.fjdzSh.rst b/Misc/NEWS.d/next/Core and Builtins/2020-06-06-00-23-19.bpo-40880.fjdzSh.rst
new file mode 100644
index 0000000..ab42f5c
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2020-06-06-00-23-19.bpo-40880.fjdzSh.rst
@@ -0,0 +1,2 @@
+Fix invalid memory read in the new parser when checking newlines in string
+literals. Patch by Pablo Galindo.