Serhiy Storchaka
c7b1a0bbe2
Issue #28763 : Use double hyphens (rendered as en-dashes) in numerical ranges
in the documentation.
10 years ago
Martin Panter
c73e9d844f
Issue #23231 : Document codecs.iterencode(), iterdecode() shortcomings
10 years ago
Steve Dower
5a71327f35
Issue #27959 : Documents new encoding and alias.
10 years ago
Terry Jan Reedy
fa089b9b0b
Issue #22558 : Add remaining doc links to source code for Python-coded modules.
Reformat header above separator line (added if missing) to a common format.
Patch by Yoni Lavi.
10 years ago
Berker Peksag
732ba821ca
Issue #27075 : Link to StreamReader and StreamWriter docs
Patch by Ville Skyttä.
10 years ago
Martin Panter
4c35964b76
Corrections for a/an in code comments and documentation
10 years ago
Serhiy Storchaka
6dff0205b7
Issue #26736 : Used HTTPS for external links in the documentation if possible.
10 years ago
Victor Stinner
bfd9767e0f
Issue #24894 : Document the codec iso8859_11
Patch written by Prashant Tyagi.
11 years ago
Martin Panter
06171bd52a
Issue #16473 : Fix byte transform codec documentation; test quotetabs=True
This changes the equivalent functions listed for the Base-64, hex and Quoted-
Printable codecs to reflect the functions actually used. Also mention and
test the "quotetabs" setting for Quoted-Printable encoding.
11 years ago
Berker Peksag
41ca828580
Issue #12160 : Fix incorrect StreamCodec references in Codec.encode() and Codec.decode() docs.
It should StreamWriter for Codecs.encode() and StreamReader for Codec.decode().
Patch by Nick Weinhold.
11 years ago
Serhiy Storchaka
f0eeedf0d8
Issue #22681 : Added support for the koi8_t encoding.
11 years ago
Serhiy Storchaka
ad8a1c3fb2
Issue #22682 : Added support for the kz1048 encoding.
11 years ago
Larry Hastings
f5caf2b30b
Checking in this change LOCAL ONLY NO UPLOAD ANYWHERE
11 years ago
Georg Brandl
7e91af3a91
Remove unsupported (in latex) character from the source.
11 years ago
Serhiy Storchaka
07985ef387
Issue #22286 : The "backslashreplace" error handlers now works with
decoding and translating.
12 years ago
Serhiy Storchaka
d3faf43f9b
Issue #23181 : More "codepoint" -> "code point".
12 years ago
Georg Brandl
3be472b5f7
Closes #23181 : codepoint -> code point
12 years ago
Nick Coghlan
f212636fe3
Issue #19548 : clean up merge issues in codecs docs
Patch by Martin Panter to clean up some problems with the merge
of the codecs docs changes from Python 3.4.
12 years ago
Nick Coghlan
b9fdb7a452
Issue 19548: update codecs module documentation
- clarified the distinction between text encodings and other codecs
- clarified relationship with builtin open and the io module
- consolidated documentation of error handlers into one section
- clarified type constraints of some behaviours
- added tests for some of the new statements in the docs
12 years ago
Berker Peksag
87f6c2212e
Issue #19676 : Tweak documentation a bit.
* Updated version info to 3.5
* Fixed a markup error
* Added a versionadded directive to namereplace_errors documentation
12 years ago
Serhiy Storchaka
166ebc4e5d
Issue #19676 : Added the "namereplace" error handler.
12 years ago
Victor Stinner
f6a271ae98
Issue #18395 : Rename ``_Py_char2wchar()`` to func:`Py_DecodeLocale`, rename
``_Py_wchar2char()`` to func:`Py_EncodeLocale`, and document these
functions.
12 years ago
Victor Stinner
ef5b4e3dc3
Issue #21488 : Fix doc of codecs.decode() and codecs.encode(), no keyword support.
Patch written by Brad Aylsworth.
12 years ago
Andrew Kuchling
2e3743cd30
#13437 : link to the source code for a few more modules
12 years ago
R David Murray
c4c7b1ccb6
whatsnew: cp273 codec ( #10907797 )
Also updated the docs and added the aliases mentioned by the
references.
12 years ago
R David Murray
47d083cf1a
whatsnew: cp273 codec ( #10907797 )
Also updated the docs and added the aliases mentioned by the
references.
12 years ago
Serhiy Storchaka
be0c3250b1
Issue #19668 : Added support for the cp1125 encoding.
13 years ago
Nick Coghlan
9c1aed8f94
Close #7475 : Restore binary & text transform codecs
The codecs themselves were restored in Python 3.2, this
completes the restoration by adding back the convenience
aliases.
These aliases were originally left out due to confusing
errors when attempting to use them with the text encoding
specific convenience methods. Python 3.4 includes several
improvements to those errors, thus permitting the aliases
to be restored as well.
13 years ago
Serhiy Storchaka
58cf607d13
Issue #12892 : The utf-16* and utf-32* codecs now reject (lone) surrogates.
The utf-16* and utf-32* encoders no longer allow surrogate code points
(U+D800-U+DFFF) to be encoded.
The utf-32* decoders no longer decode byte sequences that correspond to
surrogate code points.
The surrogatepass error handler now works with the utf-16* and utf-32* codecs.
Based on patches by Victor Stinner and Kang-Hao (Kenny) Lu.
13 years ago
Serhiy Storchaka
bfdcd436f0
Issue #18758 : Fixed and improved cross-references.
13 years ago
Nick Coghlan
6cb2b5b1e1
Issue #17827 : Document codecs.encode and codecs.decode
13 years ago
Georg Brandl
9c2505b8fc
Fix order of required StreamReader/StreamWriter base classes. Spotted by Edward Welbourne on docs@.
13 years ago
Nick Coghlan
fdf239a855
Close #17839 : support bytes-like objects in base64 module
This mostly affected the encodebytes and decodebytes function
(which are used by base64_codec)
Also added a test to ensure all bytes-bytes codecs can handle
memoryview input and tests for handling of multidimensional
and non-bytes format input in the modern base64 API.
13 years ago
Serhiy Storchaka
cca40ffa97
Issue #18336 . Fix a link to StreamReader's read() method.
13 years ago
Andrew Kuchling
c7b6c50f29
Describe 'surrogateescape' in the documentation.
Also, improve some docstring descriptions of the 'errors' parameter.
Closes #14015 .
13 years ago
Nick Coghlan
650e322fc6
Issue 17844: Clarify meaning of different codec tables
13 years ago
Serhiy Storchaka
9e62d35e65
Issue #17844 : Add links to encoders and decoders for bytes-to-bytes codecs.
13 years ago
Ezio Melotti
173d4109b5
#17841 : remove missing codecs aliases from the documentation. Patch by Thomas Fenzl.
13 years ago
Ezio Melotti
c58a3ea72c
#17714 : document that the base64 codec adds a trailing newline.
13 years ago
Georg Brandl
44ea77bd81
Closes #4159 : add LaTeX tabular column specifications to tables that otherwise are cut off or have overlapping text.
13 years ago
Benjamin Peterson
196035595f
document that encoding error handlers may return bytes ( #16585 )
14 years ago
Antoine Pitrou
fbd4f80979
Issue #15444 : Use proper spelling for non-ASCII contributor names.
Patch by Serhiy Storchaka.
14 years ago
Sandro Tosi
98ed08f24e
update to new C roles and directives
15 years ago
Victor Stinner
9f4b1e9c50
Fix and deprecated the unicode_internal codec
unicode_internal codec uses Py_UNICODE instead of the real internal
representation (PEP 393: Py_UCS1, Py_UCS2 or Py_UCS4) for backward
compatibility.
15 years ago
Ezio Melotti
59b13f4de9
Refactor a bit the codecs doc.
15 years ago
Ezio Melotti
fbb39815d4
Refactor a bit the codecs doc.
15 years ago
Victor Stinner
2f3ca9f20e
Close #13247 : Add cp65001 codec, the Windows UTF-8 (CP_UTF8)
15 years ago
Ezio Melotti
7a03f64c2e
Remove mention of narrow/wide builds in the codecs doc.
15 years ago
Victor Stinner
3a50e7056e
Issue #12281 : Rewrite the MBCS codec to handle correctly replace and ignore
error handlers on all Windows versions. The MBCS codec is now supporting all
error handlers, instead of only replace to encode and ignore to decode.
15 years ago
Ezio Melotti
4f14a1ff52
From RFC 3629 5- and 6-bytes UTF-8 sequences are invalid, so remove them from the doc.
15 years ago