From 12ea06567c236f0c6e3aa6045ced9a9b1272ebc6 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Thu, 4 May 2017 00:48:48 +0300 Subject: [PATCH] tests/cpydiff/core_function_unpacking: Fill in workaround. --- tests/cpydiff/core_function_unpacking.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/cpydiff/core_function_unpacking.py b/tests/cpydiff/core_function_unpacking.py index f0cc24055a..01d25ee4d2 100644 --- a/tests/cpydiff/core_function_unpacking.py +++ b/tests/cpydiff/core_function_unpacking.py @@ -1,7 +1,7 @@ """ categories: Core,Functions -description: Unpacking function arguments in non-last position gives incorrect result +description: Unpacking function arguments in non-last position isn't detected as an error cause: Unknown -workaround: Unknown +workaround: The syntax below is invalid, never use it in applications. """ print(*(1, 2), 3)