mirror of
https://github.com/kennethreitz/python-guide.git
synced 2026-06-05 06:46:17 +00:00
Merge pull request #184 from thomasballinger/remove-apparently-unnecessary-escapes
remove slashes in code sample in style guide
This commit is contained in:
@@ -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**
|
||||
|
||||
|
||||
Reference in New Issue
Block a user