[pywin32-checkins] pywin32/com/win32com/client genpy.py,1.65,1.66
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Roger U. <ru...@us...> - 2009-03-27 12:34:48
|
Update of /cvsroot/pywin32/pywin32/com/win32com/client In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv11396 Modified Files: genpy.py Log Message: Fix open mode conflict (bug # 2672514) Index: genpy.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32com/client/genpy.py,v retrieving revision 1.65 retrieving revision 1.66 diff -C2 -d -r1.65 -r1.66 *** genpy.py 14 Jan 2009 04:55:42 -0000 1.65 --- genpy.py 27 Mar 2009 12:34:43 -0000 1.66 *************** *** 778,782 **** else: import codecs # not available in py3k. ! ret = codecs.open(filename, "wt", encoding) return ret --- 778,782 ---- else: import codecs # not available in py3k. ! ret = codecs.open(filename, "w", encoding) return ret |