Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f62cf61

Browse files
committed
Give in to tabnanny.
1 parent 5810297 commit f62cf61

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

Lib/shelve.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@
3131
# Try using cPickle and cStringIO if available.
3232

3333
try:
34-
from cPickle import Pickler, Unpickler
34+
from cPickle import Pickler, Unpickler
3535
except ImportError:
36-
from pickle import Pickler, Unpickler
36+
from pickle import Pickler, Unpickler
3737

3838
try:
39-
from cStringIO import StringIO
39+
from cStringIO import StringIO
4040
except ImportError:
41-
from StringIO import StringIO
41+
from StringIO import StringIO
4242

4343

4444
class Shelf:
@@ -75,7 +75,7 @@ def __delitem__(self, key):
7575

7676
def close(self):
7777
try:
78-
self.dict.close()
78+
self.dict.close()
7979
except:
8080
pass
8181
self.dict = 0

0 commit comments

Comments
 (0)