~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to tools/fixed-in.py

  • Committer: Vincent Ladeuil
  • Date: 2010-09-28 08:45:10 UTC
  • mto: (5490.1.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 5492.
  • Revision ID: v.ladeuil+lp@free.fr-20100928084510-eyvuxfyf54e6lpp5
Comment NewsParser.parse_bugs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
109
109
        for line in self.news:
110
110
            self.set_line(line)
111
111
            if self.try_release():
112
 
                continue
 
112
                continue # line may a be release
113
113
            try:
114
114
                if self.confirm_release():
115
 
                    continue
 
115
                    continue # previous line was indeed a release
116
116
            finally:
117
117
                self.may_be_release = None
118
118
            if self.try_date():
119
 
                continue
 
119
                continue # The release date has been seen
120
120
            if self.add_line_to_entry():
121
 
                continue
 
121
                continue # accumulate in self.enrty
122
122
            for b in self.extract_bugs_from_entry():
123
 
                yield b
 
123
                yield b # all bugs in the news entry
124
124
 
125
125
def main():
126
126
    opt_parser = optparse.OptionParser(