[Python-checkins]
python/dist/src/Lib/idlelib IOBinding.py, 1.19.8.2, 1.19.8.3
kbk at users.sourceforge.net
kbk at users.sourceforge.net
Tue Nov 25 00:06:59 EST 2003
Update of /cvsroot/python/python/dist/src/Lib/idlelib
In directory sc8-pr-cvs1:/tmp/cvs-serv8575
Modified Files:
Tag: release23-maint
IOBinding.py
Log Message:
Fix a typo introduced at Rev 1.19.8.2
M IOBinding.py
Index: IOBinding.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/idlelib/IOBinding.py,v
retrieving revision 1.19.8.2
retrieving revision 1.19.8.3
diff -C2 -d -r1.19.8.2 -r1.19.8.3
*** IOBinding.py 3 Sep 2003 05:15:20 -0000 1.19.8.2
--- IOBinding.py 25 Nov 2003 05:06:56 -0000 1.19.8.3
***************
*** 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