[Python-checkins] cpython (2.7): Fixed bugs in reprs of CookieJar and multiprocessing.dummy.Value.

serhiy.storchaka python-checkins at python.org
Tue Jul 22 10:11:47 CEST 2014


http://hg.python.org/cpython/rev/30e29c1c4032
changeset:   91766:30e29c1c4032
branch:      2.7
parent:      91760:51699f5f5430
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Tue Jul 22 11:11:01 2014 +0300
summary:
  Fixed bugs in reprs of CookieJar and multiprocessing.dummy.Value.

files:
  Lib/cookielib.py                      |  4 ++--
  Lib/multiprocessing/dummy/__init__.py |  2 +-
  2 files changed, 3 insertions(+), 3 deletions(-)


diff --git a/Lib/cookielib.py b/Lib/cookielib.py
--- a/Lib/cookielib.py
+++ b/Lib/cookielib.py
@@ -1719,12 +1719,12 @@
     def __repr__(self):
         r = []
         for cookie in self: r.append(repr(cookie))
-        return "<%s[%s]>" % (self.__class__, ", ".join(r))
+        return "<%s[%s]>" % (self.__class__.__name__, ", ".join(r))
 
     def __str__(self):
         r = []
         for cookie in self: r.append(str(cookie))
-        return "<%s[%s]>" % (self.__class__, ", ".join(r))
+        return "<%s[%s]>" % (self.__class__.__name__, ", ".join(r))
 
 
 # derives from IOError for backwards-compatibility with Python 2.4.0
diff --git a/Lib/multiprocessing/dummy/__init__.py b/Lib/multiprocessing/dummy/__init__.py
--- a/Lib/multiprocessing/dummy/__init__.py
+++ b/Lib/multiprocessing/dummy/__init__.py
@@ -138,7 +138,7 @@
         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__]

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list