mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Fixed bugs in reprs of CookieJar and multiprocessing.dummy.Value.
This commit is contained in:
parent
cb7d43cbdf
commit
1392df96ef
2 changed files with 3 additions and 3 deletions
|
@ -104,7 +104,7 @@ class Value(object):
|
|||
self._value = value
|
||||
value = property(_get, _set)
|
||||
def __repr__(self):
|
||||
return '<%r(%r, %r)>'%(type(self).__name__,self._typecode,self._value)
|
||||
return '<%s(%r, %r)>'%(type(self).__name__,self._typecode,self._value)
|
||||
|
||||
def Manager():
|
||||
return sys.modules[__name__]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue