[Python-checkins] python/dist/src/Lib shelve.py,1.23,1.24

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Mon, 26 May 2003 23:30:54 -0700


Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1:/tmp/cvs-serv20010

Modified Files:
	shelve.py 
Log Message:
Fixup bare try/except.

Index: shelve.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/shelve.py,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -d -r1.23 -r1.24
*** shelve.py	20 May 2003 05:15:55 -0000	1.23
--- shelve.py	27 May 2003 06:30:52 -0000	1.24
***************
*** 141,145 ****
          try:
              self.dict.close()
!         except:
              pass
          self.dict = 0
--- 141,145 ----
          try:
              self.dict.close()
!         except AttributeError:
              pass
          self.dict = 0