~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/ui/__init__.py

  • Committer: Robert Collins
  • Date: 2010-06-21 22:29:38 UTC
  • mfrom: (5230.1.5 340394-encoding-option)
  • mto: This revision was merged to the branch mainline in revision 5317.
  • Revision ID: robertc@robertcollins.net-20100621222938-2ca4dybx3c55huhn
Polish and adjust news for Martin's output_encoding branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
177
177
        version of stdout, but in a GUI it might be appropriate to send it to a 
178
178
        window displaying the text.
179
179
     
180
 
        :param encoding: Unicode encoding for output; default is the 
181
 
            terminal encoding, which may be different from the user encoding.
 
180
        :param encoding: Unicode encoding for output; if not specified 
 
181
            uses the configured 'output_encoding' if any; otherwise the 
 
182
            terminal encoding. 
182
183
            (See get_terminal_encoding.)
183
184
 
184
185
        :param encoding_type: How to handle encoding errors:
186
187
        """
187
188
        # XXX: is the caller supposed to close the resulting object?
188
189
        if encoding is None:
 
190
            from bzrlib import config
 
191
            encoding = config.GlobalConfig().get_user_option(
 
192
                'output_encoding')
 
193
        if encoding is None:
189
194
            encoding = osutils.get_terminal_encoding()
190
195
        if encoding_type is None:
191
196
            encoding_type = 'replace'