diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-07-22 08:10:37 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-07-22 08:10:37 (GMT) |
commit | fbc877b7940beaa23fea020b8a137a660eff419e (patch) | |
tree | d96f72eb3c38374fb603f26483782ccfe663904b /Lib/multiprocessing | |
parent | dfead8ddc22a52656c90cc876cbb75be2b844c16 (diff) | |
parent | 1392df96efdccc7ed369fe0ab8e55bf4e9c9e0c4 (diff) | |
download | cpython-fbc877b7940beaa23fea020b8a137a660eff419e.zip cpython-fbc877b7940beaa23fea020b8a137a660eff419e.tar.gz cpython-fbc877b7940beaa23fea020b8a137a660eff419e.tar.bz2 |
Fixed bugs in reprs of CookieJar and multiprocessing.dummy.Value.
Diffstat (limited to 'Lib/multiprocessing')
-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__] |