diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-07-22 08:09:36 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-07-22 08:09:36 (GMT) |
commit | 1392df96efdccc7ed369fe0ab8e55bf4e9c9e0c4 (patch) | |
tree | 19c97baa0d4bc291aa2c4cd54709f56db2b96494 /Lib/multiprocessing/dummy | |
parent | cb7d43cbdff11a49f841883f8daf7135bc2cdac8 (diff) | |
download | cpython-1392df96efdccc7ed369fe0ab8e55bf4e9c9e0c4.zip cpython-1392df96efdccc7ed369fe0ab8e55bf4e9c9e0c4.tar.gz cpython-1392df96efdccc7ed369fe0ab8e55bf4e9c9e0c4.tar.bz2 |
Fixed bugs in reprs of CookieJar and multiprocessing.dummy.Value.
Diffstat (limited to 'Lib/multiprocessing/dummy')
-rw-r--r-- | Lib/multiprocessing/dummy/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/multiprocessing/dummy/__init__.py b/Lib/multiprocessing/dummy/__init__.py index 97f7af7..135db7f 100644 --- a/Lib/multiprocessing/dummy/__init__.py +++ b/Lib/multiprocessing/dummy/__init__.py @@ -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__] |