Merge pull request #184 from thomasballinger/remove-apparently-unnecessary-escapes
authorKenneth Reitz <me@kennethreitz.com>
Thu, 5 Jul 2012 21:50:31 +0000 (14:50 -0700)
committerKenneth Reitz <me@kennethreitz.com>
Thu, 5 Jul 2012 21:50:31 +0000 (14:50 -0700)
remove slashes in code sample in style guide

docs/writing/style.rst

index 462ffba..b8e2199 100644 (file)
@@ -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**