~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/multiparent.py

  • Committer: John Arbash Meinel
  • Date: 2011-01-11 18:48:11 UTC
  • mto: This revision was merged to the branch mainline in revision 5596.
  • Revision ID: john@arbash-meinel.com-20110111184811-igkdbe9d0io7hfgh
don't import pdb in live code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
564
564
        zip_file = GzipFile(None, mode='rb', fileobj=sio)
565
565
        try:
566
566
            file_version_id = zip_file.readline()
567
 
            import pdb; pdb.set_trace()
568
567
            content = zip_file.read()
569
568
            return MultiParent.from_patch(content)
570
569
        finally: