History log of /external/python/cpython3/Lib/encodings/utf_32.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
46f50726a0047ae81d478c3a206f587b8f35ed08 26-May-2016 Martin Panter <vadmium+py@gmail.com> Issue #27076: Doc, comment and tests spelling fixes

Most fixes to Doc/ and Lib/ directories by Ville Skyttä.
/external/python/cpython3/Lib/encodings/utf_32.py
a92ad7ee2cfd4e81c22a7715aa0278196d9da664 22-May-2010 Victor Stinner <victor.stinner@haypocalc.com> Merged revisions 81471-81472 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
r81471 | victor.stinner | 2010-05-22 15:37:56 +0200 (sam., 22 mai 2010) | 7 lines

Issue #6268: More bugfixes about BOM, UTF-16 and UTF-32

* Fix seek() method of codecs.open(), don't write the BOM twice after seek(0)
* Fix reset() method of codecs, UTF-16, UTF-32 and StreamWriter classes
* test_codecs: use "w+" mode instead of "wt+". "t" mode is not supported by
Solaris or Windows, but does it really exist? I found it the in the issue.
........
r81472 | victor.stinner | 2010-05-22 15:44:25 +0200 (sam., 22 mai 2010) | 4 lines

Fix my last commit (r81471) about codecs

Rememder: don't touch the code just before a commit
........
/external/python/cpython3/Lib/encodings/utf_32.py
4902e69e40b7f73bbb5e02a64260a8cf03651c80 30-Aug-2007 Collin Winter <collinw@gmail.com> More raise statement normalization.
/external/python/cpython3/Lib/encodings/utf_32.py
19e62387b9bd70fb4f3212db55872454f903229e 17-Aug-2007 Walter Dörwald <walter@livinglogic.de> Fix stupid typo in Lib/encodings/utf_32.py which led to failing tests
on big endian machines.

Update documentation: UTF-32 codecs will be in 2.6.
/external/python/cpython3/Lib/encodings/utf_32.py
41980caf644163f1ff74a793b30f1c424eeede82 16-Aug-2007 Walter Dörwald <walter@livinglogic.de> Apply SF patch #1775604: This adds three new codecs (utf-32, utf-32-le and
ut-32-be). On narrow builds the codecs combine surrogate pairs in the unicode
object into one codepoint on encoding and create surrogate pairs for
codepoints outside the BMP on decoding. Lone surrogates are passed through
unchanged in all cases.

Backport to the trunk will follow.
/external/python/cpython3/Lib/encodings/utf_32.py