summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorBrian May <brian@linuxpenguins.xyz>2018-08-20 17:25:49 +1000
committerBrian May <brian@linuxpenguins.xyz>2019-02-18 17:31:57 +1100
commitda522d835635036b1b6ee9650efb68610256916a (patch)
treec82926bbd6ac7a33cf83e00843accebd97a09e1c /lib
parent3d296da5ed80bbe0b17c6ece33a454895b20c846 (diff)
Replace `abc` with repr(abc)
Diffstat (limited to 'lib')
-rw-r--r--lib/python/security_db.py6
-rw-r--r--lib/python/web_support.py8
2 files changed, 7 insertions, 7 deletions
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 "<websupport.Tag instance, name=%s>" % `self.__name`
+ return "<websupport.Tag instance, name=%s>" % 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()

© 2014-2024 Faster IT GmbH | imprint | privacy policy