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)
|