summaryrefslogtreecommitdiffstats
path: root/Lib/codecs.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-01-14 23:36:06 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-01-14 23:36:06 (GMT)
commit88869f9787cd4ceb2298e4b13980beb057687824 (patch)
tree653976731f926b5e098bf57b4858a9516af220b5 /Lib/codecs.py
parent752d3f557e95cda98a8b50808cfe2f2d0b8767eb (diff)
downloadcpython-88869f9787cd4ceb2298e4b13980beb057687824.zip
cpython-88869f9787cd4ceb2298e4b13980beb057687824.tar.gz
cpython-88869f9787cd4ceb2298e4b13980beb057687824.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib/codecs.py')
-rw-r--r--Lib/codecs.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/Lib/codecs.py b/Lib/codecs.py
index 9931137..003aa01 100644
--- a/Lib/codecs.py
+++ b/Lib/codecs.py
@@ -25,19 +25,19 @@ except ImportError,why:
BOM = struct.pack('=H',0xFEFF)
#
BOM_BE = BOM32_BE = '\376\377'
-# corresponds to Unicode U+FEFF in UTF-16 on big endian
-# platforms == ZERO WIDTH NO-BREAK SPACE
+# corresponds to Unicode U+FEFF in UTF-16 on big endian
+# platforms == ZERO WIDTH NO-BREAK SPACE
BOM_LE = BOM32_LE = '\377\376'
-# corresponds to Unicode U+FFFE in UTF-16 on little endian
-# platforms == defined as being an illegal Unicode character
+# corresponds to Unicode U+FFFE in UTF-16 on little endian
+# platforms == defined as being an illegal Unicode character
#
# 64-bit Byte Order Marks
#
BOM64_BE = '\000\000\376\377'
-# corresponds to Unicode U+0000FEFF in UCS-4
+# corresponds to Unicode U+0000FEFF in UCS-4
BOM64_LE = '\377\376\000\000'
-# corresponds to Unicode U+0000FFFE in UCS-4
+# corresponds to Unicode U+0000FFFE in UCS-4
### Codec base classes (defining the API)
@@ -547,7 +547,7 @@ def make_identity_dict(rng):
Return a dictionary where elements of the rng sequence are
mapped to themselves.
-
+
"""
res = {}
for i in rng: