[Python-checkins] python/dist/src/Lib/idlelib IOBinding.py, 1.21, 1.22

kbk at users.sourceforge.net kbk at users.sourceforge.net
Tue Nov 25 00:01:03 EST 2003


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

Modified Files:
	IOBinding.py 
Log Message:
Fix a typo introduced at 1.21

M IOBinding.py

Backported to 23-maint


Index: IOBinding.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/idlelib/IOBinding.py,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -d -r1.21 -r1.22
*** IOBinding.py	3 Sep 2003 05:13:14 -0000	1.21
--- IOBinding.py	25 Nov 2003 05:01:00 -0000	1.22
***************
*** 30,34 ****
      import locale
      locale.setlocale(locale.LC_CTYPE, "")
! except (ImportError, locale.error):
      pass
  
--- 30,34 ----
      import locale
      locale.setlocale(locale.LC_CTYPE, "")
! except (ImportError, locale.Error):
      pass
  





More information about the Python-checkins mailing list