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 /Lib/xmllib.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 'Lib/xmllib.py')
-rw-r--r-- | Lib/xmllib.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Lib/xmllib.py b/Lib/xmllib.py index cdc861e..f1cd2e4 100644 --- a/Lib/xmllib.py +++ b/Lib/xmllib.py @@ -817,30 +817,30 @@ class TestXMLParser(XMLParser): def handle_doctype(self, tag, pubid, syslit, data): self.flush() - print 'DOCTYPE:',tag, `data` + print 'DOCTYPE:',tag, repr(data) def handle_data(self, data): self.testdata = self.testdata + data - if len(`self.testdata`) >= 70: + if len(repr(self.testdata)) >= 70: self.flush() def flush(self): data = self.testdata if data: self.testdata = "" - print 'data:', `data` + print 'data:', repr(data) def handle_cdata(self, data): self.flush() - print 'cdata:', `data` + print 'cdata:', repr(data) def handle_proc(self, name, data): self.flush() - print 'processing:',name,`data` + print 'processing:',name,repr(data) def handle_comment(self, data): self.flush() - r = `data` + r = repr(data) if len(r) > 68: r = r[:32] + '...' + r[-32:] print 'comment:', r |