Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython2
/
c48daf5bc47383fa8f49fac91babf1d850e6df46
/
Lib
/
encodings
961b91b
Correction of patch #1455898: In the mbcs decoder, set final=False
by Martin v. Löwis
· 18 years ago
0eac118
Make import/lookup of mbcs fail on non-Windows systems.
by Martin v. Löwis
· 18 years ago
d825143
Patch #1455898: Incremental mode for "mbcs" codec.
by Martin v. Löwis
· 18 years ago
c6f5b3a
errors is an attribute in the incremental decoder not an argument.
by Walter Dörwald
· 18 years ago
6b6e2bb
Fix passing errors to the encoder and decoder functions.
by Walter Dörwald
· 18 years ago
c7d1445
Whitespace normalization.
by Tim Peters
· 18 years ago
3f76779
Patch #1359618: Speed-up charmap encoder.
by Martin v. Löwis
· 18 years ago
78a0be6
Add a BufferedIncrementalEncoder class that can be used for implementing
by Walter Dörwald
· 19 years ago
a40cf31
Make error message less misleading for u"a..b".encode("idna").
by Walter Dörwald
· 19 years ago
6493699
Make raise statements PEP 8 compatible.
by Walter Dörwald
· 19 years ago
a8da934
Whitespace.
by Walter Dörwald
· 19 years ago
e2ac4ab
Patch #1443155: Add the incremental codecs support for CJK codecs.
by Hye-Shik Chang
· 19 years ago
f8480a7
Instead of relative imports, use (implicitly) absolute ones.
by Guido van Rossum
· 19 years ago
f99b816
Whitespace normalization.
by Tim Peters
· 19 years ago
13ed60b
Fix typo.
by Walter Dörwald
· 19 years ago
abb02e5
Patch #1436130: codecs.lookup() now returns a CodecInfo object (a subclass
by Walter Dörwald
· 19 years ago
87de069
Use relative imports in a few places where I noticed the need.
by Guido van Rossum
· 19 years ago
5bd7c02
Avoid forward-declaring the methods array.
by Martin v. Löwis
· 19 years ago
480f1bb
Update Unicode database to Unicode 4.1.
by Martin v. Löwis
· 19 years ago
fe4b34c
Fix the encodings package codec search function to only search
by Marc-André Lemburg
· 19 years ago
412ed3b
Patch #1177307: UTF-8-Sig codec.
by Martin v. Löwis
· 19 years ago
536cf99
Whitespace normalization.
by Tim Peters
· 19 years ago
d9cf593
Cosmetic change: make all hex literals use upper case hex so that they
by Marc-André Lemburg
· 19 years ago
3c72ded
Removed the decoding_map from the codecs where this is possible.
by Marc-André Lemburg
· 19 years ago
0f00ba8
Replace the old EBCDIC codecs with new ones using the decoding table.
by Marc-André Lemburg
· 19 years ago
7797be7
Alias iso8859_1 to latin_1 which is the same encoding, but has
by Marc-André Lemburg
· 19 years ago
75c9e83
Add a few more Mac OS encodings. The mapping tables for these are
by Marc-André Lemburg
· 19 years ago
a1129f4
Replace the old charmap codecs with new ones generated from the current
by Marc-André Lemburg
· 19 years ago
007f8df
Bug #1245379: Add "unicode-1-1-utf-7" as an alias for "utf-7" as specified
by Walter Dörwald
· 19 years ago
4ce69a5
No need to import exceptions, they are builtins
by Neal Norwitz
· 19 years ago
8b59514
Make IDNA return an empty string when the input is empty. Fixes #1163178.
by Martin v. Löwis
· 19 years ago
729c31f
Reset internal buffers when seek() is called. This fixes SF bug #1156259.
by Walter Dörwald
· 20 years ago
e1a0391
Fix wrong variable name.
by Walter Dörwald
· 20 years ago
9ab8818
Rearranged mappings to value sorting order.
by Marc-André Lemburg
· 20 years ago
6965203
SF patch #998993: The UTF-8 and the UTF-16 stateful decoders now support
by Walter Dörwald
· 20 years ago
d1b7827
Whitespace normalization.
by Tim Peters
· 20 years ago
c759f07
Added new codecs and aliases for ISO_8859-11, ISO_8859-16 and TIS-620.
by Marc-André Lemburg
· 20 years ago
c0cbc86
Whitespace normalization.
by Tim Peters
· 20 years ago
17b6d28
New codec: [ 996067 ] hp-roman8 codec
by Marc-André Lemburg
· 20 years ago
cd8a4cb
Added new codec hp-roman8 submitted as patch [ 996067 ] hp-roman8 codec.
by Marc-André Lemburg
· 20 years ago
2bb146f
Bring CJKCodecs 1.1 into trunk. This completely reorganizes source
by Hye-Shik Chang
· 20 years ago
4e0e1b6
Whitespace normalization.
by Tim Peters
· 20 years ago
708b4da
Convert input to a string object. Fixes #909230. Backported 2.3.
by Martin v. Löwis
· 21 years ago
5c5316f
Add a new unicode codec: ptcp154 (Kazakh)
by Hye-Shik Chang
· 21 years ago
361d66d
Fix wrong character mapping in koi8_u: SF bug #902501.
by Marc-André Lemburg
· 21 years ago
c83dddf
Let the default encodings search function lookup aliases before trying the codec import. This allows applications to install codecs which override (non-special-cased) builtin codecs.
by Marc-André Lemburg
· 21 years ago
5c94d33
Add some more code page aliases needed for completeness.
by Marc-André Lemburg
· 21 years ago
b619e4b
Fix a typo: s/iso_3022/iso2022/
by Hye-Shik Chang
· 21 years ago
3e2a306
Add CJK codecs support as discussed on python-dev. (SF #873597)
by Hye-Shik Chang
· 21 years ago
0ad142a
Revert previous change. MAL preferred the old version.
by Raymond Hettinger
· 21 years ago
a455170
Simplifed the code.
by Raymond Hettinger
· 21 years ago
9edae34
Fix typo in the comments.
by Raymond Hettinger
· 21 years ago
9a80c5d
Added codec for bz2 compression.
by Raymond Hettinger
· 21 years ago
0d8e16c
Support trailing dots in DNS names. Fixes #782510. Will backport to 2.3.
by Martin v. Löwis
· 21 years ago
5d6ceb4
more generic reference to python interpreter
by Skip Montanaro
· 21 years ago
2820125
Remove usage of re module from encodings package search function.
by Marc-André Lemburg
· 21 years ago
0eadaac
Whitespace normalization.
by Tim Peters
· 22 years ago
2548c73
Implement IDNA (Internationalized Domain Names in Applications).
by Martin v. Löwis
· 22 years ago
7fb697b
Revert Patch #670715: iconv support.
by Martin v. Löwis
· 22 years ago
6156a2d
Handle iconv initialization erorrs
by Neal Norwitz
· 22 years ago
9789aef
Patch #670715: Universal Unicode Codec for POSIX iconv.
by Martin v. Löwis
· 22 years ago
6578dc9
Whitespace normalization.
by Tim Peters
· 22 years ago
d8407a7
Add new encoding for Ukrainian Cyrillic
by Neal Norwitz
· 22 years ago
c8c6065
When looking for an alias, first look for the normalized name (which
by Guido van Rossum
· 22 years ago
8dc5ff2
Undo the removal. Guido mentioned that the encoding name is in active
by Marc-André Lemburg
· 22 years ago
68fc273
Remove unneeded alias.
by Marc-André Lemburg
· 22 years ago
a40ea75
Fix doc-string.
by Marc-André Lemburg
· 22 years ago
9d158bb
Adapt lookup names to new more general encoding name normalization scheme.
by Marc-André Lemburg
· 22 years ago
7012673
Extending the encoding name normalization to handle more non-alphanumeric
by Marc-André Lemburg
· 22 years ago
479f3d3
Oops, must convert hyphens to underscores in keys of aliases dict.
by Guido van Rossum
· 22 years ago
b7a88e5
Add yet another alias for ASCII found in the field. Will backport to 2.2.2.
by Guido van Rossum
· 22 years ago
280488b
Whitespace normalization.
by Tim Peters
· 22 years ago
8a8da79
Patch #505705: Remove eval in pickle and cPickle.
by Martin v. Löwis
· 22 years ago
469cdad
Whitespace normalization.
by Tim Peters
· 22 years ago
b9e0764
Revert #571603 since it is ok to import codecs that are not subdirectories
by Martin v. Löwis
· 22 years ago
fc4c24c
Patch #571603: Refer to encodings package explicitly.
by Martin v. Löwis
· 22 years ago
a83ffa8
Palm OS encoding from Sjoerd Mullender
by Marc-André Lemburg
· 22 years ago
3ccb09c
Fix for bug #222395: UTF-16 et al. don't handle .readline().
by Marc-André Lemburg
· 23 years ago
a0af63b
Corrected import behaviour for codecs which live outside the encodings package.
by Marc-André Lemburg
· 23 years ago
462004e
Add IANA character set aliases to the encodings alias dictionary
by Marc-André Lemburg
· 23 years ago
79d802d
Patch #487275: Add windows-1251 charset alias.
by Martin v. Löwis
· 23 years ago
35b0cb0
Python part of the UTF-7 codec by Brian Quinlan.
by Marc-André Lemburg
· 23 years ago
c60e6f7
Patch #435971: UTF-7 codec by Brian Quinlan.
by Marc-André Lemburg
· 23 years ago
26e3b68
Patch #462635 by Andrew Kuchling correcting bugs in the new
by Marc-André Lemburg
· 23 years ago
816a1b7
Fixed search function error reporting in the encodings package
by Marc-André Lemburg
· 23 years ago
fd6608b
Fix typo (PyChecker)
by Andrew M. Kuchling
· 23 years ago
9b75dca
Expose nl_langinfo through locale where available.
by Martin v. Löwis
· 23 years ago
92b550c
This patch by Martin v. Loewis changes the UTF-16 codec to only
by Marc-André Lemburg
· 23 years ago
13b8bc5
Patch #429957: Add support for cp1140, which is identical to cp037,
by Martin v. Löwis
· 23 years ago
194bfb2
Add some useful Windows encodings - patch #423221.
by Mark Hammond
· 23 years ago
716cf91
Moved the encoding map building logic from the individual mapping
by Marc-André Lemburg
· 23 years ago
acfdf15
Add quoted-printable codec
by Guido van Rossum
· 23 years ago
2d92041
This patch changes the way the string .encode() method works slightly
by Marc-André Lemburg
· 23 years ago
a866df8
This patch changes the default behaviour of the builtin charmap
by Marc-André Lemburg
· 24 years ago
988ad2b
Changed .getaliases() support to register the new aliases in the
by Marc-André Lemburg
· 24 years ago
7e47402
Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either
by Thomas Wouters
· 24 years ago
7ebb92e
Marc-Andre Lemburg <mal@lemburg.com>:
by Marc-André Lemburg
· 24 years ago
4fd73f0
Marc-Andre Lemburg <mal@lemburg.com>:
by Marc-André Lemburg
· 24 years ago
54480d3
New codec which always raises an exception when used. This
by Marc-André Lemburg
· 24 years ago
9e896b3
Marc-Andre's third try at this bulk patch seems to work (except that
by Guido van Rossum
· 25 years ago
Next »