Commit 894dff42 authored by Georg Brandl's avatar Georg Brandl

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.
........
parent 81af1742
...@@ -410,7 +410,7 @@ class Server(object): ...@@ -410,7 +410,7 @@ class Server(object):
self.id_to_refcount[ident] -= 1 self.id_to_refcount[ident] -= 1
if self.id_to_refcount[ident] == 0: if self.id_to_refcount[ident] == 0:
del self.id_to_obj[ident], self.id_to_refcount[ident] 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: finally:
self.mutex.release() self.mutex.release()
......
...@@ -82,6 +82,9 @@ Core and Builtins ...@@ -82,6 +82,9 @@ Core and Builtins
Library Library
------- -------
- Issue #6938: Fix a TypeError in string formatting of a multiprocessing
debug message.
- Issue #6635: Fix profiler printing usage message. - Issue #6635: Fix profiler printing usage message.
- Issue #6795: int(Decimal('nan')) now raises ValueError instead of - Issue #6795: int(Decimal('nan')) now raises ValueError instead of
......
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