summaryrefslogtreecommitdiff
path: root/Lib/shelve.py
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2012-10-06 18:38:30 +0300
committerAndrew Svetlov <andrew.svetlov@gmail.com>2012-10-06 18:38:30 +0300
commitac0f965fd0d33da64f42d1a7ece1a66c80c3ff52 (patch)
tree9255a174be0e643a6b4ddd692e758381af8d7416 /Lib/shelve.py
parentb70e8a1958a15dadd4e4371427498bc11a7b8077 (diff)
downloadcpython-git-ac0f965fd0d33da64f42d1a7ece1a66c80c3ff52.tar.gz
Add spaces to follow PEP8.
Diffstat (limited to 'Lib/shelve.py')
-rw-r--r--Lib/shelve.py2
1 files changed, 1 insertions, 1 deletions
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.'