[Git][security-tracker-team/security-tracker][master] 2 commits: Replace `abc` with repr(abc)
Salvatore Bonaccorso
carnil at debian.org
Sun Feb 24 16:07:51 GMT 2019
Salvatore Bonaccorso pushed to branch master at Debian Security Tracker / security-tracker
Commits:
da522d83 by Brian May at 2019-02-18T06:31:57Z
Replace `abc` with repr(abc)
- - - - -
20dfe46e by Salvatore Bonaccorso at 2019-02-24T16:07:34Z
Merge branch 'bam/security-tracker-update_python_repr'
- - - - -
2 changed files:
- lib/python/security_db.py
- lib/python/web_support.py
Changes:
=====================================
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")
=====================================
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()
View it on GitLab: https://salsa.debian.org/security-tracker-team/security-tracker/compare/b8adc7925b77f089e2960c9a8110fff127a9c57f...20dfe46edbac7b84bfb30e0083476a74fa27fe40
--
View it on GitLab: https://salsa.debian.org/security-tracker-team/security-tracker/compare/b8adc7925b77f089e2960c9a8110fff127a9c57f...20dfe46edbac7b84bfb30e0083476a74fa27fe40
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/debian-security-tracker-commits/attachments/20190224/2dcdd124/attachment-0001.html>
More information about the debian-security-tracker-commits
mailing list