Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/configobj.rst
Original file line number Diff line number Diff line change
Expand Up @@ -417,8 +417,7 @@ ConfigObj takes the following arguments (with the default values shown) :

``default_encoding``, if specified, is the encoding used to decode byte
strings in the **ConfigObj** before writing. If this is ``None``, then
the Python default encoding (``sys.defaultencoding`` - usually ASCII) is
used.
a default encoding (currently ASCII) is used.

For most Western European users, a value of ``latin-1`` is sensible.

Expand Down Expand Up @@ -869,7 +868,8 @@ members) will first be decoded to Unicode using the encoding specified by the
``default_encoding`` attribute. This ensures that the output is in the encoding
specified.

If this value is ``None`` then ``sys.defaultencoding`` is used instead.
If this value is ``None`` then a default encoding (currently ASCII) is used to decode
any byte-strings in your ConfigObj instance.


unrepr
Expand Down
Loading