From da522d835635036b1b6ee9650efb68610256916a Mon Sep 17 00:00:00 2001 From: Brian May Date: Mon, 20 Aug 2018 17:25:49 +1000 Subject: Replace `abc` with repr(abc) --- lib/python/security_db.py | 6 +++--- lib/python/web_support.py | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) (limited to 'lib') diff --git a/lib/python/security_db.py b/lib/python/security_db.py index 3c75fa7f5e..72a4308668 100644 --- a/lib/python/security_db.py +++ b/lib/python/security_db.py @@ -627,7 +627,7 @@ class DB: st = os.stat(filename) # The "1" is a version number which can be used to trigger a # re-read if the code has changed in an incompatible way. - return `(st.st_size, st.st_ino, st.st_mtime, 1)` + return repr((st.st_size, st.st_ino, st.st_mtime, 1)) def _parseFile(self, cursor, filename): current_print = self.filePrint(filename) @@ -657,7 +657,7 @@ class DB: if match is None: raise SyntaxError(('package %s references ' + 'invalid source package %s') % - (pkg_name, `contents`)) + (pkg_name, repr(contents))) (pkg_source, pkg_source_version) = match.groups() elif name == "Architecture": pkg_arch = contents @@ -1173,7 +1173,7 @@ class DB: result.append("%s:%d: unstable: %s" % (b.source_file, b.source_line, unstable_ver)) result.append("%s:%d: release %s: %s" - % (b.source_file, b.source_line, `rel`, rel_ver)) + % (b.source_file, b.source_line, repr(rel), rel_ver)) if self.verbose: print(" checking source packages") diff --git a/lib/python/web_support.py b/lib/python/web_support.py index c320ff033c..5752f34b5f 100644 --- a/lib/python/web_support.py +++ b/lib/python/web_support.py @@ -139,7 +139,7 @@ class URL: def __str__(self): return self.__url def __repr__(self): - return "URL(%s)" % `self.__url` + return "URL(%s)" % repr(self.__url) class URLFactory: """Creates URL objects. @@ -347,7 +347,7 @@ class Tag(HTMLBase): write("<%s%s/>" % (self.__name, self.__attribs)) def __repr__(self): - return "" % `self.__name` + return "" % repr(self.__name) def toString(self): r = cStringIO.StringIO() @@ -768,7 +768,7 @@ class WebService(Service, WebServiceBase): self.pre_dispatch() url = URLFactory(server_name, script_name, path, params) r = method(remaining, params, url) - assert isinstance(r, Result), `r` + assert isinstance(r, Result), repr(r) r.flatten(result.write) class ThreadingHTTPServer(SocketServer.ThreadingMixIn, @@ -801,7 +801,7 @@ class WebServiceHTTP(WebServiceBase): try: service_self.pre_dispatch() r = method(remaining, params, url) - assert isinstance(r, Result), `r` + assert isinstance(r, Result), repr(r) result = r.flatten_later() finally: service_self.lock.release() -- cgit v1.2.3