From: Andrew Svetlov Date: Sat, 6 Oct 2012 15:38:30 +0000 (+0300) Subject: Add spaces to follow PEP8. X-Git-Tag: v3.4.0a1~2339 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ac0f965fd0d33da64f42d1a7ece1a66c80c3ff52;p=python Add spaces to follow PEP8. --- diff --git a/Lib/shelve.py b/Lib/shelve.py index cfb6863d04..cef580e5cd 100644 --- a/Lib/shelve.py +++ b/Lib/shelve.py @@ -61,7 +61,7 @@ from io import BytesIO import collections -__all__ = ["Shelf","BsdDbShelf","DbfilenameShelf","open"] +__all__ = ["Shelf", "BsdDbShelf", "DbfilenameShelf", "open"] class _ClosedDict(collections.MutableMapping): 'Marker for a closed dict. Access attempts raise a ValueError.'