mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Give in to tabnanny.
This commit is contained in:
parent
5810297052
commit
f62cf61548
1 changed files with 5 additions and 5 deletions
|
@ -31,14 +31,14 @@ or may not be necessary to flush changes to disk.
|
|||
# Try using cPickle and cStringIO if available.
|
||||
|
||||
try:
|
||||
from cPickle import Pickler, Unpickler
|
||||
from cPickle import Pickler, Unpickler
|
||||
except ImportError:
|
||||
from pickle import Pickler, Unpickler
|
||||
from pickle import Pickler, Unpickler
|
||||
|
||||
try:
|
||||
from cStringIO import StringIO
|
||||
from cStringIO import StringIO
|
||||
except ImportError:
|
||||
from StringIO import StringIO
|
||||
from StringIO import StringIO
|
||||
|
||||
|
||||
class Shelf:
|
||||
|
@ -75,7 +75,7 @@ class Shelf:
|
|||
|
||||
def close(self):
|
||||
try:
|
||||
self.dict.close()
|
||||
self.dict.close()
|
||||
except:
|
||||
pass
|
||||
self.dict = 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue