~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/knit.py

  • Committer: John Arbash Meinel
  • Date: 2009-07-08 23:10:47 UTC
  • mto: This revision was merged to the branch mainline in revision 4522.
  • Revision ID: john@arbash-meinel.com-20090708231047-8zlppczwumi0e0hp
Remove some assert statements.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3532
3532
                lines = self._expand_record(child_key, parent_keys,
3533
3533
                                            compression_parent,
3534
3534
                                            record, record_details)
3535
 
                assert lines is not None
3536
3535
                if self._check_ready_for_annotations(child_key, parent_keys):
3537
3536
                    to_return.append(child_key)
3538
3537
        # Also check any children that are waiting for this parent to be
3595
3594
            # ghosts?
3596
3595
            details = self._all_build_details[key]
3597
3596
            (_, compression_parent, parent_keys, record_details) = details
3598
 
            assert parent_keys == self._parent_map[key]
3599
3597
            lines = self._expand_record(key, parent_keys, compression_parent,
3600
3598
                                        record, record_details)
3601
3599
            if lines is None: