From: Thomas Ballinger Date: Thu, 5 Jul 2012 18:41:21 +0000 (-0400) Subject: remove slashes in code sample in style guide X-Git-Url: https://git.eng.unimelb.edu.au/public?p=python-guide.git;a=commitdiff_plain;h=96fb1d42d14e437dc164bc61aee166237cb8bd62 remove slashes in code sample in style guide --- diff --git a/docs/writing/style.rst b/docs/writing/style.rst index 462ffba..b8e2199 100644 --- a/docs/writing/style.rst +++ b/docs/writing/style.rst @@ -30,9 +30,9 @@ most explicit and straightforward manner is preferred. .. code-block:: python - def make_complex(\*args): + def make_complex(*args): x, y = args - return dict(\**locals()) + return dict(**locals()) **Good**