~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: John Arbash Meinel
  • Date: 2005-07-16 16:22:04 UTC
  • mto: (1185.82.1 bzr-w-changeset) (0.5.98)
  • mto: This revision was merged to the branch mainline in revision 1738.
  • Revision ID: john@arbash-meinel.com-20050716162204-ca86975b99b2742e
Handling international characters, added more test cases.

Show diffs side-by-side

added added

removed removed

Lines of Context:
100
100
            else:
101
101
                base_rev_id = base_branch.lookup_revision(base_revno)
102
102
 
103
 
        outf = codecs.getwriter(user_encoding)(sys.stdout,
104
 
                errors='replace')
 
103
        # outf = codecs.getwriter(user_encoding)(sys.stdout,
 
104
        #         errors='replace')
105
105
 
106
106
        if starting_rev_id is not None:
107
107
            raise BzrCommandError('Specifying the STARTING-REV-ID'
110
110
        gen_changeset.show_changeset(base_branch, base_rev_id,
111
111
                target_branch, target_rev_id,
112
112
                starting_rev_id,
113
 
                to_file=outf, include_full_diff=verbose)
 
113
                to_file=sys.stdout, include_full_diff=verbose)
114
114
 
115
115
class cmd_verify_changeset(Command):
116
116
    """Read a written changeset, and make sure it is valid.