From 8858d6c589be76466b0ca27a974c1ac59195b987 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Tue, 26 Feb 2019 03:22:08 +0100 Subject: [PATCH] Splat --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7b0919f..6d17de8 100644 --- a/README.md +++ b/README.md @@ -485,8 +485,8 @@ def add(*a): #### Legal argument combinations with calls: ```python -def f(*args) # f(1, 2, 3) -def f(x, *args) # f(1, 2, 3) +def f(*args): # f(1, 2, 3) +def f(x, *args): # f(1, 2, 3) def f(*args, z) # f(1, 2, z=3) def f(x, *args, z) # f(1, 2, z=3) ```