From 230f736fcdeca96107e58407214092d4ad9dc3b9 Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Mon, 3 Jun 2019 08:38:42 -0700 Subject: [PATCH] Add changelog entries for reverting all() handling --- changelog/5370.bugfix.rst | 1 + changelog/5371.bugfix.rst | 1 + changelog/5372.bugfix.rst | 1 + 3 files changed, 3 insertions(+) create mode 100644 changelog/5370.bugfix.rst create mode 100644 changelog/5371.bugfix.rst create mode 100644 changelog/5372.bugfix.rst diff --git a/changelog/5370.bugfix.rst b/changelog/5370.bugfix.rst new file mode 100644 index 000000000..70def0d27 --- /dev/null +++ b/changelog/5370.bugfix.rst @@ -0,0 +1 @@ +Revert unrolling of ``all()`` to fix ``NameError`` on nested comprehensions. diff --git a/changelog/5371.bugfix.rst b/changelog/5371.bugfix.rst new file mode 100644 index 000000000..46ff5c890 --- /dev/null +++ b/changelog/5371.bugfix.rst @@ -0,0 +1 @@ +Revert unrolling of ``all()`` to fix incorrect handling of generators with ``if``. diff --git a/changelog/5372.bugfix.rst b/changelog/5372.bugfix.rst new file mode 100644 index 000000000..e9b644db2 --- /dev/null +++ b/changelog/5372.bugfix.rst @@ -0,0 +1 @@ +Revert unrolling of ``all()`` to fix incorrect assertion when using ``all()`` in an expression.