diff options
author | Georg Brandl <georg@python.org> | 2006-08-14 22:01:24 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-08-14 22:01:24 (GMT) |
commit | d76bd69712e04d496e88f878f13876ce9c1765b0 (patch) | |
tree | 7306b7f7ff3f0a79b7adbc6dddc239fe3e54dbc2 /Lib/string.py | |
parent | 7a1af770b9fbf73e967fac9ad224e6caad62e4cc (diff) | |
download | cpython-d76bd69712e04d496e88f878f13876ce9c1765b0.zip cpython-d76bd69712e04d496e88f878f13876ce9c1765b0.tar.gz cpython-d76bd69712e04d496e88f878f13876ce9c1765b0.tar.bz2 |
Cookie.py shouldn't "bogusly" use string._idmap.
Diffstat (limited to 'Lib/string.py')
-rw-r--r-- | Lib/string.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/string.py b/Lib/string.py index a5837e9..921bd8b 100644 --- a/Lib/string.py +++ b/Lib/string.py @@ -35,7 +35,6 @@ printable = digits + letters + punctuation + whitespace # Case conversion helpers # Use str to convert Unicode literal in case of -U -# Note that Cookie.py bogusly uses _idmap :( l = map(chr, xrange(256)) _idmap = str('').join(l) del l |