[pywin32-checkins] pywin32/com/win32comext/axdebug codecontainer.py, 1.4.4.1, 1.4.4.2
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-11-27 04:58:49
|
Update of /cvsroot/pywin32/pywin32/com/win32comext/axdebug In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv1302/com/win32comext/axdebug Modified Files: Tag: py3k codecontainer.py Log Message: Almost all files in py3k branch are now in py3k syntax - but work remains Index: codecontainer.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32comext/axdebug/codecontainer.py,v retrieving revision 1.4.4.1 retrieving revision 1.4.4.2 diff -C2 -d -r1.4.4.1 -r1.4.4.2 *** codecontainer.py 26 Nov 2008 09:03:29 -0000 1.4.4.1 --- codecontainer.py 27 Nov 2008 04:58:41 -0000 1.4.4.2 *************** *** 206,210 **** self.text = open(fname, "r").read() except IOError as details: ! self.text = "# Exception opening file\n# %s" % (`details`) else: self.text = "# No file available for module '%s'" % (self.module) --- 206,210 ---- self.text = open(fname, "r").read() except IOError as details: ! self.text = "# Exception opening file\n# %s" % (repr(details)) else: self.text = "# No file available for module '%s'" % (self.module) |