Lines Matching refs:section
681 for section in self.all_sections:
682 section.text = section.text.strip('\n')
683 if section.tag is not None and section.text == '':
685 section.info, "text required after '%s:'" % section.tag)
693 section = self.Section(info)
694 self.sections.append(section)
695 self.all_sections.append(section)
698 section = self.Section(info, tag)
703 self.returns = section
708 self.errors = section
713 self.since = section
714 self.sections.append(section)
715 self.all_sections.append(section)
723 section = self.ArgSection(info, '@' + name)
724 self.all_sections.append(section)
725 desc[name] = section
775 bogus = [name for name, section in args.items()
776 if not section.member]