diff options
author | Georg Brandl <georg@python.org> | 2009-09-18 09:19:52 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-09-18 09:19:52 (GMT) |
commit | 894dff42db9bed65c0c2da759944eeee1f2a653f (patch) | |
tree | edebfe7be39c70bf1b43fe2324caf6a869409a71 /Lib/multiprocessing/managers.py | |
parent | 81af174221e1e1fbf1e358488043082e28f1865a (diff) | |
download | cpython-894dff42db9bed65c0c2da759944eeee1f2a653f.zip cpython-894dff42db9bed65c0c2da759944eeee1f2a653f.tar.gz cpython-894dff42db9bed65c0c2da759944eeee1f2a653f.tar.bz2 |
Merged revisions 74903 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74903 | georg.brandl | 2009-09-18 11:18:27 +0200 (Fr, 18 Sep 2009) | 1 line
#6938: "ident" is always a string, so use a format code which works.
........
Diffstat (limited to 'Lib/multiprocessing/managers.py')
-rw-r--r-- | Lib/multiprocessing/managers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/multiprocessing/managers.py b/Lib/multiprocessing/managers.py index f32dab1..e331116 100644 --- a/Lib/multiprocessing/managers.py +++ b/Lib/multiprocessing/managers.py @@ -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() |