diff options
author | Georg Brandl <georg@python.org> | 2005-08-25 07:32:42 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2005-08-25 07:32:42 (GMT) |
commit | 8246c439a8246093b03e3987d6c1496ebe73b81c (patch) | |
tree | 83b3f6764e4e6f4cbad1240db9c3bba27025c472 /Lib/Cookie.py | |
parent | 3fa5575fa4d06c3ae3909f5a8b4f29274767e33d (diff) | |
download | cpython-8246c439a8246093b03e3987d6c1496ebe73b81c.zip cpython-8246c439a8246093b03e3987d6c1496ebe73b81c.tar.gz cpython-8246c439a8246093b03e3987d6c1496ebe73b81c.tar.bz2 |
Correct test suite for #848017.
Diffstat (limited to 'Lib/Cookie.py')
-rw-r--r-- | Lib/Cookie.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/Cookie.py b/Lib/Cookie.py index fa2e05e..20a2941 100644 --- a/Lib/Cookie.py +++ b/Lib/Cookie.py @@ -224,6 +224,7 @@ __all__ = ["CookieError","BaseCookie","SimpleCookie","SerialCookie", _nulljoin = ''.join _semispacejoin = '; '.join +_spacejoin = ' '.join # # Define an exception visible to External modules @@ -594,7 +595,7 @@ class BaseCookie(dict): items.sort() for K,V in items: L.append( '%s=%s' % (K,repr(V.value) ) ) - return '<%s: %s>' % (self.__class__.__name__, _semispacejoin(L)) + return '<%s: %s>' % (self.__class__.__name__, _spacejoin(L)) def js_output(self, attrs=None): """Return a string suitable for JavaScript.""" |