~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: Alexander Belchenko
  • Date: 2006-12-19 17:37:38 UTC
  • mto: This revision was merged to the branch mainline in revision 2204.
  • Revision ID: bialix@ukr.net-20061219173738-4pd3h25j5ozjmf5e
Spell-checking (thanks to Aaron)

Show diffs side-by-side

added added

removed removed

Lines of Context:
214
214
            replace - put in a bogus character (typically '?')
215
215
            exact - do not encode sys.stdout
216
216
 
217
 
            NOTE: by default on Windows sys.stdout opened as text stream,
218
 
            therefore line-endings LF converted to CRLF.
219
 
            When command use encoding_type = 'exact' then
220
 
            sys.stdout forced to be binary stream and line-endings
 
217
            NOTE: by default on Windows, sys.stdout is opened as a text
 
218
            stream, therefore LF line-endings are converted to CRLF.
 
219
            When a command uses encoding_type = 'exact', then
 
220
            sys.stdout is forced to be a binary stream, and line-endings
221
221
            will not mangled.
 
222
 
222
223
    """
223
224
    aliases = []
224
225
    takes_args = []