diff --git a/loopy/kernel/instruction.py b/loopy/kernel/instruction.py index 543d8e637f885c630d5e31b92d3cae780e66837c..6b0fa64db2a3741c983fc3250f3d65ace6075db7 100644 --- a/loopy/kernel/instruction.py +++ b/loopy/kernel/instruction.py @@ -1097,7 +1097,8 @@ class CallInstruction(MultiAssignmentBase): for temp_var_type in temp_var_types: if temp_var_type is lp.auto: warn("temp_var_type should be Optional(None) if " - "unspecified, not auto. This usage will be disallowed soon.", + "unspecified, not auto. " + "This usage will be disallowed soon.", DeprecationWarning, stacklevel=2) temp_var_type = lp.Optional(None) processed_temp_var_types.append(temp_var_type)