From f432707e429b1986e5eee624779e201684d4d305 Mon Sep 17 00:00:00 2001 From: Softonik Date: Sat, 17 Dec 2022 01:27:10 +0300 Subject: [PATCH] =?UTF-8?q?Python:=20=D1=83=D0=B1=D1=80=D0=B0=D0=BD=20?= =?UTF-8?q?=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D0=BE=D0=BB=D1=8C=D0=B7=D1=83?= =?UTF-8?q?=D0=B5=D0=BC=D1=8B=D0=B9=20=D1=82=D0=B5=D1=81=D1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- transpile_python/service_test.go | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/transpile_python/service_test.go b/transpile_python/service_test.go index d27e569..b0d6192 100644 --- a/transpile_python/service_test.go +++ b/transpile_python/service_test.go @@ -438,23 +438,6 @@ main() Compare(source, expected) }) - XIt("Assignments += by index of function call", func() { - source := `package test - import . "skidl" - - func main() { - vkl_iface = vkl_iface_part(1)[0] - } - ` - expected := `from skidl import * - -def main(): - vkl_iface = vkl_iface_part(1)[0] -main() -` - Compare(source, expected) - }) - It("Assignments &", func() { source := `package test import . "skidl"