Kaydet (Commit) c40e60e5 authored tarafından Georg Brandl's avatar Georg Brandl

#6938: "ident" is always a string, so use a format code which works.

üst 097f7088
......@@ -410,7 +410,7 @@ class Server(object):
self.id_to_refcount[ident] -= 1
if self.id_to_refcount[ident] == 0:
del self.id_to_obj[ident], self.id_to_refcount[ident]
util.debug('disposing of obj with id %d', ident)
util.debug('disposing of obj with id %r', ident)
finally:
self.mutex.release()
......
......@@ -376,6 +376,9 @@ Core and Builtins
Library
-------
- Issue #6938: Fix a TypeError in string formatting of a multiprocessing
debug message.
- Issue #6635: Fix profiler printing usage message.
- Issue #6856: Add a filter keyword argument to TarFile.add().
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment