diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2020-06-08 01:57:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-08 01:57:00 (GMT) |
commit | 9f495908c5bd3645ed1af82d7bae6782720dab77 (patch) | |
tree | d32e61893af27e9719a3936c7c0c52424d5687cc /Misc/NEWS.d | |
parent | 843c27765652e2322011fb3e5d88f4837de38c06 (diff) | |
download | cpython-9f495908c5bd3645ed1af82d7bae6782720dab77.zip cpython-9f495908c5bd3645ed1af82d7bae6782720dab77.tar.gz cpython-9f495908c5bd3645ed1af82d7bae6782720dab77.tar.bz2 |
bpo-40903: Handle multiple '=' in invalid assignment rules in the PEG parser (GH-20697)
Automerge-Triggered-By: @pablogsal
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2020-06-07-22-50-10.bpo-40903.7dWejS.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-06-07-22-50-10.bpo-40903.7dWejS.rst b/Misc/NEWS.d/next/Core and Builtins/2020-06-07-22-50-10.bpo-40903.7dWejS.rst new file mode 100644 index 0000000..5ee72c1 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2020-06-07-22-50-10.bpo-40903.7dWejS.rst @@ -0,0 +1 @@ +Fixed a possible segfault in the new PEG parser when producing error messages for invalid assignments of the form :code:`p=p=`. Patch by Pablo Galindo
\ No newline at end of file |