diff options
author | Guido van Rossum <guido@python.org> | 2019-05-28 23:44:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-28 23:44:58 (GMT) |
commit | 77f0ed7a42606d03ebfe48ab152caf0d796d6540 (patch) | |
tree | 1aab5bc929a5d50b3a4820ce7fdb2c05aafd6a73 /Misc/NEWS.d | |
parent | 44bfff2ec220f2e0291150a776d4d77af7c821ef (diff) | |
download | cpython-77f0ed7a42606d03ebfe48ab152caf0d796d6540.zip cpython-77f0ed7a42606d03ebfe48ab152caf0d796d6540.tar.gz cpython-77f0ed7a42606d03ebfe48ab152caf0d796d6540.tar.bz2 |
bpo-37072: Fix crash in PyAST_FromNodeObject() when flags is NULL (#13634)
I'm confident that this fixes the reported crash. flags=NULL is treated as using the latest minor version.
https://bugs.python.org/issue37072
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2019-05-28-18-18-55.bpo-37072.1Hewl3.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-05-28-18-18-55.bpo-37072.1Hewl3.rst b/Misc/NEWS.d/next/Core and Builtins/2019-05-28-18-18-55.bpo-37072.1Hewl3.rst new file mode 100644 index 0000000..15bcc5e --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2019-05-28-18-18-55.bpo-37072.1Hewl3.rst @@ -0,0 +1 @@ +Fix crash in PyAST_FromNodeObject() when flags is NULL.
\ No newline at end of file |