summaryrefslogtreecommitdiffstats
path: root/Lib/string.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/string.py')
-rw-r--r--Lib/string.py1
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