From 4b5111f8e1ec1fc0dc0845a090beee1ecbd309df Mon Sep 17 00:00:00 2001 From: Damien George Date: Fri, 4 May 2018 22:19:50 +1000 Subject: [PATCH] tests/cpydiff: Remove core_function_unpacking now that it succeeds. Commit 1e70fda69fcb4991eb60ed43e610f664ea1319e6 fixes this difference. --- tests/cpydiff/core_function_unpacking.py | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 tests/cpydiff/core_function_unpacking.py diff --git a/tests/cpydiff/core_function_unpacking.py b/tests/cpydiff/core_function_unpacking.py deleted file mode 100644 index 01d25ee4d2..0000000000 --- a/tests/cpydiff/core_function_unpacking.py +++ /dev/null @@ -1,7 +0,0 @@ -""" -categories: Core,Functions -description: Unpacking function arguments in non-last position isn't detected as an error -cause: Unknown -workaround: The syntax below is invalid, never use it in applications. -""" -print(*(1, 2), 3)