diff options
author | Walter Dörwald <walter@livinglogic.de> | 2004-02-12 17:35:32 (GMT) |
---|---|---|
committer | Walter Dörwald <walter@livinglogic.de> | 2004-02-12 17:35:32 (GMT) |
commit | 70a6b49821a3226f55e9716f32d802d06640cb89 (patch) | |
tree | 3c8ca10c1fa09e025bd266cf855a00d7d96c55aa /Mac/Demo/PICTbrowse/ICONbrowse.py | |
parent | ecfeb7f095dfd9c1c8929bf3df858ee35e0d9e9e (diff) | |
download | cpython-70a6b49821a3226f55e9716f32d802d06640cb89.zip cpython-70a6b49821a3226f55e9716f32d802d06640cb89.tar.gz cpython-70a6b49821a3226f55e9716f32d802d06640cb89.tar.bz2 |
Replace backticks with repr() or "%r"
From SF patch #852334.
Diffstat (limited to 'Mac/Demo/PICTbrowse/ICONbrowse.py')
-rw-r--r-- | Mac/Demo/PICTbrowse/ICONbrowse.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Mac/Demo/PICTbrowse/ICONbrowse.py b/Mac/Demo/PICTbrowse/ICONbrowse.py index 42ae96d..1194b7e 100644 --- a/Mac/Demo/PICTbrowse/ICONbrowse.py +++ b/Mac/Demo/PICTbrowse/ICONbrowse.py @@ -52,7 +52,7 @@ class ICONbrowse(FrameWork.Application): def showICON(self, resid): w = ICONwindow(self) w.open(resid) - #EasyDialogs.Message('Show ICON '+`resid`) + #EasyDialogs.Message('Show ICON %r' % (resid,)) def findICONresources(self): num = Res.CountResources('ICON') @@ -70,7 +70,7 @@ class ICONbrowse(FrameWork.Application): class ICONwindow(FrameWork.Window): def open(self, (resid, resname)): if not resname: - resname = '#'+`resid` + resname = '#%r' % (resid,) self.resid = resid self.picture = Icn.GetIcon(self.resid) l, t, r, b = 0, 0, 32, 32 @@ -127,7 +127,7 @@ class MyDialog(FrameWork.DialogWindow): if self.contents: self.list.LAddRow(len(self.contents), 0) for i in range(len(self.contents)): - v = `self.contents[i][0]` + v = repr(self.contents[i][0]) if self.contents[i][1]: v = v + '"' + self.contents[i][1] + '"' self.list.LSetCell(v, (0, i)) |