From 013e07b6b78c964ed9111951602ce42fa890ecc5 Mon Sep 17 00:00:00 2001 From: Danny Sepler Date: Mon, 31 Oct 2022 23:12:27 -0400 Subject: [PATCH] finish out the while statement --- testsuite/python38.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/testsuite/python38.py b/testsuite/python38.py index e3d85ee2..faf9aa7a 100644 --- a/testsuite/python38.py +++ b/testsuite/python38.py @@ -54,4 +54,5 @@ def f3( if (x := 1) == (y := 2): pass #: E741 -while l := thing: +while l := 1: + pass