diff --git a/docs/writing/style.rst b/docs/writing/style.rst index 2f8d95f..d62b920 100644 --- a/docs/writing/style.rst +++ b/docs/writing/style.rst @@ -321,7 +321,7 @@ Instead, use a list comprehension: .. code-block:: python - four_lists = [[] for _ in xrange(4)] + four_lists = [[] for __ in xrange(4)] A common idiom for creating strings is to use `join `_ on an empty string.::